Queer European MD passionate about IT

prepare.sh 272 B

12345678
  1. #!/usr/bin/bash
  2. this_script_directory=$(cd "$(dirname "${0}")" && pwd);
  3. read -r -p "Enter the name of the next challenge " challengeName;
  4. cd "$this_script_directory";
  5. mkdir "$challengeName";
  6. cd "$challengeName";
  7. code "$challengeName".py
  8. code "test_$challengeName".py