Skip to content

Instantly share code, notes, and snippets.

@Kuchitama
Created May 13, 2014 04:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Kuchitama/47f7d5781c5e842bc135 to your computer and use it in GitHub Desktop.
Save Kuchitama/47f7d5781c5e842bc135 to your computer and use it in GitHub Desktop.
PowerShellで日時をプロンプトに表示する ref: http://qiita.com/Kuchitama/items/97920cbb250d8cb638e2
> Get-Date
2014年5月13日 13:24:57
> Get-Date -Format "yyyy/MM/dd HH:mm"
2014/05/13 13:24
function global:prompt {
$now = Get-Date -format "yyyy/MM/dd HH:mm"
Write-Host($now + " ") -nonewline
return "> "
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment