Created
December 18, 2018 02:12
-
-
Save vicly/49ff6de4185515c687dfb4c0a707c471 to your computer and use it in GitHub Desktop.
[custom shell command] #Bash
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 | |
CUSTOM_BASH_DIR=~/my_bash | |
function aws-encrypt() { | |
$CUSTOM_BASH_DIR/./aws-encrypt.sh "$@" | |
} | |
function aws-decrypt() { | |
$CUSTOM_BASH_DIR/./aws-decrypt.sh "$@" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment