1
0
mirror of https://github.com/vikstrous/pirate-get synced 2025-01-10 10:04:21 +01:00

Removed temporary files

This commit is contained in:
Sam Gaus 2014-01-31 22:15:47 +00:00
parent 9af95b1da5
commit 83c8289c8f
2 changed files with 10 additions and 7 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
pirate-get-*

View File

@ -1,22 +1,24 @@
#!/usr/bin/env sh
if [ "$UID" -ne 0 ]
then echo "Please run as root"
exit
fi
TMP=`mktemp pirate-get-XXX`
if [ `which python2.7` ]
TMP=$(mktemp pirate-get-XXX)
if [ $(which python2.7) ]
then
echo "#!/usr/bin/env python2.7" > $TMP
echo "#!/usr/bin/env python2.7" > "$TMP"
elif [ `which python2` ]
then
echo "#!/usr/bin/env python2" > $TMP
echo "#!/usr/bin/env python2" > "$TMP"
else
echo "#!/usr/bin/env python" > $TMP
echo "#!/usr/bin/env python" > "$TMP"
fi
sed 1d `dirname $0`/pirate-get.py >> $TMP
sed 1d $(dirname $0)/pirate-get.py >> "$TMP"
cp $TMP /usr/bin/pirate-get
cp "$TMP" /usr/bin/pirate-get
chmod +x /usr/bin/pirate-get
chmod 755 /usr/bin/pirate-get
rm "$TMP"