Linuxでよく利用するlsコマンド

コマンド:
1.サブディレクトリのみをリスト
ls -F | grep /$ または alias sub = “ls -F | grep /$"(linux)
ls -l | grep “^d" または ls -lL | grep “^d" (Solaris)

2.現在ディレクトリのファイルとディレクトリを計算
# ls -l * |grep “^-“|wc -l —- to count files
# ls -l * |grep “^d"|wc -l —– to count dir

3.カラーディスプレイディレクトリ一覧
vim /etc/bashrc 追加
alias ls="ls –color"

ls -tl –time-style=full-iso sshd
ls -ctl –time-style=long-iso

Linux

Posted by arkgame