GoCatGo provides a way of uploading a file to share with someone, you pass a file, and it returns a link. Simple as that!
With this short url, you can remember the links easily.
It's a simple tool, you only need curl
.
# With a file
cat file.txt | curl -F "file=@-" gcg.sh
# or
curl -F "[email protected]" gcg.sh
# Passing any string
echo "some cool code" | curl -F "file=@-" gcg.sh
# Upload images
curl -F "[email protected]" gcg.sh
# with an alias
echo file.txt | gcg
# or with a function
gcg file.txt
You can add gcg alias to your shell to make it easier to upload files:
echo "$(curl https://gcg.sh/alias)" >> ~/.bashrc
# or, to preserve the filetype
echo "$(curl https://gcg.sh/function)" >> ~/.bashrc
See wiki.
See CONTRIBUTING.md
- How do I know the code running is the same as the repository?
I've created an URL so you can check the sha256 of current code running: gcg.sh/sha256 - How can I delete a paste I've created?
For now, you can request me at[email protected]
. In the future it will be implemented.