You may upload files using the above form or the following command:
curl https://up.chud.cyou --upload-file 'file'
# alternatively
curl https://up.chud.cyou -F'file=@file'
# as a shell function
upload(){
url="$1"
shift
if [ -z "$@" ] ; then curl "$url" -F"file=@/dev/stdin"; fi
for i in "$@"; do
if [ "$i" = "-" ]; then i="/dev/stdin" ; fi
curl "$url" -F"file=@$i"
done
}
chud(){ upload "https://up.chud.cyou" "$@" ; }
Files are wiped monthly and may not be larger than 100 mebibytes.
[Original Source]
[Deployment's Source]
[Contact & Reports]
[Emacs Configuration]