Skip to content

Instantly share code, notes, and snippets.

@abrjagad
Last active September 24, 2018 18:51
Show Gist options
  • Save abrjagad/313f50e83b0ae955a2ac0cd8a479a8e3 to your computer and use it in GitHub Desktop.
Save abrjagad/313f50e83b0ae955a2ac0cd8a479a8e3 to your computer and use it in GitHub Desktop.

Command Line Shortcuts

Move all files from Subfolder to this folder

find . -mindepth 2 -type f -print -exec mv {} . ;

Delete folders recursively

find . -name "node_modules" -type d -print -exec rm -rf '{}' +

find . -name "imagewithcta" -type d -print

Search A Word and Print

grep -r "checkbox" ./ --exclude-dir ".//node_modules" --include={*.hbs,*.scss,*.js} -l -s -o --exclude={*spec.js,*all.js,*jquery*.js,*base*,*_dng*}

Rename File's extension

rename 's/.txt$/.html/' *.txt

VSCODE

Delete other than text inside quotes ^((?!".").)$

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment