5 lines
91 B
Bash
Executable file
5 lines
91 B
Bash
Executable file
#!/bin/sh
|
|
|
|
find . -name "*.pdf" -exec rm -f {} \;
|
|
find . -name "*.midi" -exec rm -f {} \;
|
|
|