8 lines
154 B
Bash
Executable file
8 lines
154 B
Bash
Executable file
#!/bin/bash
|
|
|
|
script_root=$(dirname $0)
|
|
|
|
find "${script_root}" -name "*.deb" -delete
|
|
if [[ -d "${script_root}/tmp" ]];then
|
|
rm -r "${script_root}/tmp"
|
|
fi
|