A good writeup here: https://medium.com/@Drew_Stokes/bash-argument-parsing-54f3b81a6a8f
Drew's goods:
#!/bin/bashPARAMS=""while (( "$#" )); do
case "$1" in
-f|--flag-with-argument)
FARG=$2
shift 2
;;
--) # end argument parsing
shift
break
;;
-*|...
Running list of items that may or may not be worth my time.
In my repo tree on my VM:
cat .git/config
You can see the remote URL in there. It should look like: url = https://user@bitbucket.org/user/repository.git
or url = https://gitlab.com/user/repository.git
Run:
git remote set-url origin git@gitlab.com:user/repository.git
Gitlab uses the g...
Hi, my name is Chris and I'm still addicted to buying domain names, hosting half-baked ideas and then neglecting them. (See here: https://chrisweber.com/blog/my-hosting-mess)
Still abandoned, although I did attempt to "revive" it by at least updating it to the latest and greatest version of...