smmMaker.sh 265 B

12345678910111213141516
  1. #!/bin/bash
  2. if [ "$1" != "" ] && [ "$2" != "" ] && [ "$3" != "" ]; then {
  3. mkdir -p "$2"/contents/"$3"/
  4. cp -r "$1"/* "$2"/contents/"$3"/
  5. }
  6. else {
  7. echo "The program need at least three arguments: <path_modtree> <mod_name> <title_ref>"
  8. }
  9. fi