Skip to content

Instantly share code, notes, and snippets.

@palozano
Last active May 2, 2023 08:20
Show Gist options
  • Save palozano/c9233ff382a217cf2a7f1eb40ce17949 to your computer and use it in GitHub Desktop.
Save palozano/c9233ff382a217cf2a7f1eb40ce17949 to your computer and use it in GitHub Desktop.
# Useful commands
Here you can find things I find useful and may reuse yourself.
Not good stuff imo, but hey
## Find alias in ZSH, when you are using .oh-my-zsh and some plugins:
zsh -ixc : 2>&1 | grep <alias-to-find>
## Bulk convert images by extension:
find . -type f -name "*.png" -exec sh -c 'convert -density 300 "$1" "${1%.png}.pdf"' _ {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment