Last active
November 30, 2015 17:08
-
-
Save devopsmariocom/40fbce453d85760b34b5 to your computer and use it in GitHub Desktop.
Revisions
-
devopsmariocom revised this gist
Nov 30, 2015 . 1 changed file with 1 addition and 1 deletion.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 @@ -1,3 +1,3 @@ #!/bin/zsh find . -name '*.js.map' -exec sh -c 'rm ${0%.map}.js $0' {} \; -
devopsmariocom revised this gist
Nov 30, 2015 . 1 changed file with 1 addition and 1 deletion.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 @@ -1,3 +1,3 @@ #!/bin/zsh find . -name '*.js.map' -exec sh -c 'rm ${0%.map}.js ${0}' {} \; -
devopsmariocom revised this gist
Nov 30, 2015 . 1 changed file with 1 addition and 1 deletion.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 @@ -1,3 +1,3 @@ #!/bin/zsh find . -name '*.js.map' -exec sh -c 'rm ${0%.js.map}.js ${0}' {} \; -
devopsmariocom revised this gist
Nov 30, 2015 . 1 changed file with 1 addition and 1 deletion.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 @@ -1,3 +1,3 @@ #!/bin/zsh find . -name '*.js.map' -exec sh -c 'rm ${0%.ts}.js ${0}' {} \; -
devopsmariocom revised this gist
Nov 26, 2015 . 1 changed file with 1 addition and 1 deletion.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 @@ -1,3 +1,3 @@ #!/bin/zsh find . -name '*.ts' -exec sh -c 'rm ${0%.ts}.js ${0%.ts}.js.map' {} \; -
devopsmariocom revised this gist
Nov 26, 2015 . 1 changed file with 1 addition and 1 deletion.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 @@ -1,3 +1,3 @@ #!/bin/zsh find . -name '*.ts' -exec sh -c 'rm "${0%.ts}.js ${0%.ts}.js.map"' {} \; -
devopsmariocom created this gist
Nov 26, 2015 .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,3 @@ #!/bin/zsh find . -name '*.ts' -exec sh -c 'rm "${0%.ts}.js*"' {} \;