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