-
-
Save tripodsan/6464446b8c024f476a209f289d454d25 to your computer and use it in GitHub Desktop.
Little helper to switch openwhisk namespaces
This file contains 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 | |
if [ $# -eq 0 ]; then | |
echo "usage: wp <namespace>" | |
exit 1 | |
fi | |
ln -sf ~/.wskprops_$1 ~/.wskprops | |
wsk namespace list |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment