Skip to content

Instantly share code, notes, and snippets.

@romelperez
Last active December 28, 2017 21:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save romelperez/40283b97b36ad6ad81fda6e884b52681 to your computer and use it in GitHub Desktop.
Save romelperez/40283b97b36ad6ad81fda6e884b52681 to your computer and use it in GitHub Desktop.
Linux shortcuts commands
# Line count
find ./ -name '*.js' | xargs wc -l
# Convert webp files whithin directory to png
find ./ -name "*.webp" -exec dwebp {} -o {}.png \;
# Generate random string
< /dev/urandom tr -dc _A-Z-a-z-0-9 | head -c${1:-32};echo;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment