ls不可視ファイルを表示ls -a # Bash dir -force # PowerShell 表示項目の指定ls -1 # Bash dir -name # PowerShell dir | select name # PowerShell 別の方法 絞込み検索ファイル名をワイルドカードで指定ls *.txt # Bash dir *.txt # PowerShell dir * -include *.txt # PowerShell 別の方法 dir * -include *.jpg, *.gif # PowerShell includeオプションはリストを指定出来る 除外ファイル名を指定ls *.txt | grep -v tmp # Bash dir * -Include *.txt -Exclude *tmp* # PowerShell dir * -Include *.txt -Exclude *tmp*, *old* # PowerShell excludeオプションはリストを指定できる |
|