LoginSignup
2
2

More than 5 years have passed since last update.

時々使って忘れるコマンド

Last updated at Posted at 2016-02-15

一括処理

サブディレクトリを含めたgzファイルを一括解凍

find . -name "*.gz" -print0 | xargs -0 -n1 gunzip

git

マージ済ブランチを削除(masterとdevelopは除外)

git branch --merged | grep -vE '^\*|master$|develop$' | xargs -I % git branch -d %
2
2
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
2
2