Delete 'add_paste.sh'

This commit is contained in:
Thomas Jensen 2020-04-30 10:25:33 +02:00
parent 865889f181
commit ef2dce7256
1 changed files with 0 additions and 23 deletions

View File

@ -1,23 +0,0 @@
#!/bin/bash
paste=$(</dev/stdin)
filename=$1
folder=/home/hebron/pastebin
cd $folder
git pull
if [ -z "$filename" ]; then
filename=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 6 | head -n 1)
fi
if [ -f "$folder/$filename" ]; then
echo "Paste already exists!"
exit 1
fi
echo "$paste" > $folder/$filename
git add .
git commit -m "New paste: $filename"
git push