| #!/usr/bin/bashthis_script_directory=$(cd "$(dirname "${0}")" && pwd);read -r -p "Enter the name of the next challenge      " challengeName;cd "$this_script_directory";mkdir "$challengeName";cd "$challengeName";code "$challengeName".pycode "test_$challengeName".py
 |