This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
while read f | |
do | |
x="$f" | |
x=${x// /%20} | |
x=${x##*/} | |
curl -u username:password ftp.host.com -T "$f" && echo host.com/"$x" | pbcopy | |
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# "stop, hammertime".rot13() // returns "fgbc, unzzregvzr" | |
# "fgbc, unzzregvzr".rot13() // returns "stop, hammertime" | |
String::rot13 = -> | |
this.replace /[a-zA-Z]/g, (c) -> | |
String.fromCharCode (if ((if c <= "Z" then 90 else 122)) >= (c = c.charCodeAt(0) + 13) then c else c - 26) |