LoginSignup
0
0

More than 5 years have passed since last update.

ターミナル覚書

Posted at

はじめに

この記事では、割と便利そうなLinuxコマンドを書いていきます。
不定期に足されていく予定。

ファイル操作系

カレントディレクトリ以下に存在する、特定文字列のファイルを全部削除

bash
find . -name <string> | xargs rm -r

# "._"で始まるファイルの場合
# find . -name "._*" | xargs rm -r 
0
0
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
0
0