Skip to content

Instantly share code, notes, and snippets.

@tripodsan
Created October 2, 2018 08:21
Show Gist options
  • Save tripodsan/6464446b8c024f476a209f289d454d25 to your computer and use it in GitHub Desktop.
Save tripodsan/6464446b8c024f476a209f289d454d25 to your computer and use it in GitHub Desktop.
Little helper to switch openwhisk namespaces
#!/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