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.
21 lines
495 B
21 lines
495 B
5 years ago
|
#!/bin/sh
|
||
|
extracted_path=/home/owner/Downloads/minetest
|
||
|
mnf_name=install_manifest.txt
|
||
|
customDie() {
|
||
|
echo
|
||
|
echo "ERROR:"
|
||
|
echo "$1"
|
||
|
echo
|
||
|
echo
|
||
|
exit 1
|
||
|
}
|
||
|
if [ ! -f "$extracted_path/$mnf_name" ]; then
|
||
|
customDie "$extracted_path/$mnf_name is missing, so $0 cannot continue."
|
||
|
fi
|
||
|
|
||
|
|
||
|
cd $extracted_path || customDie "* cannot cd $extracted_path."
|
||
|
echo "- about to run 'sudo xargs rm < $mnf_name'..."
|
||
|
sudo xargs rm < $mnf_name
|
||
|
# as per http://irc.minetest.net/minetest/2015-08-06
|