Scripts required to make AME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
173 B

4 years ago
3 years ago
4 years ago
  1. #!/bin/bash
  2. mkdir "empty_files"
  3. cd "empty_files"
  4. FILE_EXT=(doc docx gif json flac mkv pdf pps ppsx ppt pptx xls xlsx)
  5. for ext in "${FILE_EXT[@]}"
  6. do
  7. touch "$ext.$ext"
  8. done