Created
March 13, 2017 13:25
-
-
Save MaximeD/af8e613ff398cb41b130bb068c784e12 to your computer and use it in GitHub Desktop.
description
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
[[snippets]] | |
description = "Replace tab with spaces" | |
command = "find . -name $1 ! -type d -exec bash -c 'expand -i -t 2 \"$0\" > /tmp/e && mv /tmp/e \"$0\"' {} \\;" | |
[[snippets]] | |
description = "Empty log files" | |
command = "find . -iname \"*.log\" | xargs truncate --size 0" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment