=================================================================== RCS file: /cvs/mtctl/mtctl-completion.bash,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mtctl/mtctl-completion.bash 2021/08/31 17:00:08 1.1 +++ mtctl/mtctl-completion.bash 2021/09/26 14:02:56 1.2 @@ -1,9 +1,9 @@ _mtctl_completions() { case $COMP_CWORD in - 1) local suggestions=($(compgen -W "start stop restart status create list version help" -- "${COMP_WORDS[1]}")) + 1) local suggestions=($(compgen -W "start stop restart status create backup list version help" -- "${COMP_WORDS[1]}")) ;; 2) if [ "${COMP_WORDS[1]}" == "help" ] || [ "${COMP_WORDS[1]}" == "list" ] || [ "${COMP_WORDS[1]}" == "version" ]; then return; fi - local suggestions=($(cd {WORLDFOLDER} && compgen -d "${COMP_WORDS[2]}")) + local suggestions=($(cd $(cat $HOME/.mtctl/config | grep 'location' | sed -e 's/location\=//')/worlds && compgen -d "${COMP_WORDS[2]}")) ;; *) return ;;