11 lines
148 B
Bash
Executable File
11 lines
148 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
rm -f /usr/local/bin/runup
|
|
|
|
rm -Rf /opt/ubuntu-upscripts
|
|
|
|
bash <(curl -sL https://go.scity.us/linupx)
|