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
sudo apt-get install jpegoptim | |
sudo apt-get install optipng | |
sudo apt-get install pngquant | |
sudo npm install -g svgo | |
sudo apt-get install gifsicle |
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
/* List files with specific flag | |
git ls-files -v | grep "^S" | |
git ls-files -v | |
H cached | |
S skip-worktree | |
M unmerged | |
R removed/deleted | |
C modified/changed | |
K to be killed |
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
for f in *; do mv "$f" "`echo $f | tr "[:upper:]" "[:lower:]"`"; done |