10 lines
75 B
Bash
Executable File
10 lines
75 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
set -eu
|
|
|
|
( cd "$(dirname "$0")"/../
|
|
|
|
rm -f ./*.pdf
|
|
|
|
)
|