mirror of
https://github.com/vikstrous/pirate-get
synced 2025-01-25 12:24:20 +01:00
8 lines
104 B
Bash
8 lines
104 B
Bash
|
#!/usr/bin/sh
|
||
|
if [ "$UID" -ne 0 ]
|
||
|
then echo "Please run as root"
|
||
|
exit
|
||
|
fi
|
||
|
|
||
|
rm /usr/bin/pirate-get
|