8
11

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Linux 良く使うコマンドメモ

Last updated at Posted at 2014-12-09

1つ前にいたカレントディレクトリに移動( /var/www/html/ から /etc/nginx/ に移動した状態で、cd -で /var/www/html/に戻ることができる

cd -

lsコマンドで表示できないくらいの、大量の画像ファイル等の数をカウント

ls -1 | wc -l

カレント配下の容量順一覧を表示

du ./* | sort -nr

ログファイルなど、膨大なファイルをrmコマンドで直削除できない場合に。(扱い注意!!)

echo /var/log/201109*.log | xargs rm

agコマンドなどが使えない時のカレントディレクトリからのgrep

find ./ -type f -print | xargs grep -n 'hoge'

古いファイルを一括移動(カレントの30日前ファイルを/tmp/に移動)

find ./ -mtime +30 -name "*.log" | xargs mv --target-directory=/tmp/
8
11
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
11

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?