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.
10 lines
302 B
10 lines
302 B
#!/bin/bash
|
|
|
|
set -e # exit on error
|
|
set -o pipefail # exit on pipeline error
|
|
set -u # treat unset variable as error
|
|
|
|
SCRIPT_DIR="$(dirname "$(readlink -f "$0")")"
|
|
|
|
rm -f /root/google-chrome-stable_current_amd64.deb >>$OUTPUT 2>&1
|
|
rm -f /root/cts-4.0.0-104.ks1_amd64.deb >>$OUTPUT 2>&1
|