YanoRyuichi.com/
Wiki
Blog
GitHub
Sandbox
開始行:
* ファイル操作 [#aa4002b0]
|New-Item|ni|新規のファイル/フォルダを作成|
|Remove-Item|rm/rmdir/del|既存のファイル/フォルダを削除|
|Copy-Item|copy/cp|既存のファイル/フォルダをコピー|
|Move-Item|move/mv|既存のファイル/フォルダを移動|
** ファイルに書き込む(新規) [#cc0f4e80]
Add-Content 1.txt -Value "Hello"
** ファイルを読む [#bfa0ed48]
Get-Content 1.txt
** ディレクトリツリーを表示 [#h836b791]
# ディレクトリだけ
Show-Tree foo-dir
# ファイルも
Show-Tree foo-dir -showleaf
** 参考 [#xc86036c]
http://www.atmarkit.co.jp/fwin2k/win2ktips/1069psffolder/...
終了行:
* ファイル操作 [#aa4002b0]
|New-Item|ni|新規のファイル/フォルダを作成|
|Remove-Item|rm/rmdir/del|既存のファイル/フォルダを削除|
|Copy-Item|copy/cp|既存のファイル/フォルダをコピー|
|Move-Item|move/mv|既存のファイル/フォルダを移動|
** ファイルに書き込む(新規) [#cc0f4e80]
Add-Content 1.txt -Value "Hello"
** ファイルを読む [#bfa0ed48]
Get-Content 1.txt
** ディレクトリツリーを表示 [#h836b791]
# ディレクトリだけ
Show-Tree foo-dir
# ファイルも
Show-Tree foo-dir -showleaf
** 参考 [#xc86036c]
http://www.atmarkit.co.jp/fwin2k/win2ktips/1069psffolder/...
ページ名: