カテゴリ・トーク:UNIXコマンド
提供:maruko2 Note.
ディレクトリ内のファイル数を数える。
# ls | wc -l # ls -f | wc -l # find . -type f | wc -l
ディレクトリ内にある大量のファイルを削除しようとすると、ファイルが多すぎて削除できない場合の対処方法。
# rm * -bash: /bin/rm: Argument list too long.
# ls -f | xargs rm
# find . -type f -print0 | xargs -0 rm
.bashrc .profile の読み込み順
ログイン時に読み込むファイル
1. /etc/profile 2. ~/.bash_profile 2. ~/.bash_login (~/.bash_profile が無い場合) 2. ~/.profile (~/.bash_login が無い場合)
ログアウト時に読み込む
~/.bash_logout
bashを起動するたびに読み込む。
/etc/bashrc ~/.bashrc