initial commit

This commit is contained in:
Adam French [sc21a2f]
2024-10-08 11:45:07 +01:00
parent 3440a8c758
commit 185b32bdb7
6 changed files with 133 additions and 0 deletions

11
sh/sharefile Executable file
View File

@@ -0,0 +1,11 @@
#!/bin/bash
[ $# -eq 0 ] && read -p "Provide a file to share: " file || file=$1
curl -F "file=@$file" 0x0.st
# if [ $# -eq 0 ]; then
# echo "Please provide a file to share"
# else
# file=$1
# curl -F "file=@$file" 0x0.st
# echo "Shared File!"
# fi