カテゴリ・トーク: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
LINEで送る このエントリーをはてなブックマークに追加
個人用ツール
名前空間
変種
表示
操作
案内
ツールボックス

注目のページ

このサイトのはてなブックマーク数