What does this mean in Bash ?
INFO=$(curl_with_log -F "sub=upload" \ -F "filecontent=@$FILE;filename=$DESTFILE" \ -F "login=$USER" -F "password=$PASSWORD" "$UPLOAD_URL") || return
Im trying to do the exact same thing in powershell, i got it for the most part, i just need to know what this section is doing.
\ -F "filecontent=@$FILE;filename=$DESTFILE" \
I think there is something funky going on with the @$ but im not sure what its actually doing.