Last active
December 1, 2016 21:38
-
-
Save urosgruber/5400fdcc97e74fffff5bd8e79edb9b6a to your computer and use it in GitHub Desktop.
Revisions
-
urosgruber renamed this gist
Dec 1, 2016 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
urosgruber created this gist
Dec 1, 2016 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ ## this will remove -fs8 from files like foobar1-fs8.png for filename in *.png; do [ -f "$filename" ] || continue mv $filename ${filename//\-fs8/} done