💻 Command Line Usage
Upload file:
curl --upload-file ./file.txt https://sgfile.io
cat file.txt | curl --upload-file - https://sgfile.io/file.txt
Download file:
curl https://sgfile.io/abc123/file.txt -o file.txt
wget https://sgfile.io/abc123/file.txt
Pipe directly:
echo "Hello World" | curl --upload-file - https://sgfile.io/hello.txt