old.bash

#!/usr/bin/env bash

# We immediately return as we don't want any of this code to execute
return;


function old_newscript(){
    DIR="${0%/*}"/tfbash
    read -p "File Name: " FILE
    touch ${DIR}/${FILE}
    chmod ug+x ${DIR}/${FILE}
    chmod o-rwx ${DIR}/${FILE}
}