Last active
May 2, 2023 08:20
-
-
Save palozano/c9233ff382a217cf2a7f1eb40ce17949 to your computer and use it in GitHub Desktop.
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
# 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