Last active
May 29, 2016 04:29
-
-
Save nishinoshake/add6ae40ad3b8d55a865 to your computer and use it in GitHub Desktop.
ファイルを検索して削除
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
grep | |
-v 一致したものを除外 | |
xargs | |
標準入力をパラメータにわたす |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find ./ -name *.css.map | grep -v node_module | xargs rm |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment