Last active
May 31, 2021 19:55
-
-
Save hovsater/3ab2be2ecd682629c3a5454544661226 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
#!/usr/bin/env bash | |
# usage: anthonygitpaste 'git', 'log', '--oneline' | |
set -eo pipefail | |
if [ $# -eq 0 ]; then | |
echo "usage: must paste da codez" | |
exit 1 | |
fi | |
eval "$(echo "$@" | tr -d ',')" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment