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
| @echo off | |
| REM Usage: bashdo echo 'hello, world!' | |
| REM Caution: it doesn't work well if there are double quotes in your Bash commands (need to figure out how to escape them). | |
| "%ProgramFiles%\Git\bin\bash.exe" -l -c "%*" |
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
| #!/bin/bash | |
| # Install ImageMagick before using this script: brew install imagemagick (for the convert command) | |
| # This script works in Bash, but not in ZSH. | |
| sizes=" | |
| 40x40 | |
| 60x60 | |
| 58x58 | |
| 87x87 |
OlderNewer