Upload a file

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.

Upchud is a FOSS file uploader service, originally developed for up.chud.cyou

Original source: git.xolatile.top/anon/upchud
This deployment's source: git.xolatile.top/emil/up.chud.cyou

Contact and abuse reports via email.

Emacs configuration. This includes some other services too.