Delete 'add_paste.sh'
This commit is contained in:
parent
865889f181
commit
ef2dce7256
23
add_paste.sh
23
add_paste.sh
@ -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
|
|
Loading…
Reference in New Issue
Block a user