Skip to content

Instantly share code, notes, and snippets.

@mbohun
Last active December 24, 2015 01:09
Show Gist options
  • Save mbohun/6721239 to your computer and use it in GitHub Desktop.
Save mbohun/6721239 to your computer and use it in GitHub Desktop.
# flac to mp3
for file in *.flac; do flac -cd "$file" | lame -h -b 320 - "${file%.flac}.mp3"; done
# lftp example
lftp -u username,password -e "put -O src Screenshot_2013-02-21-01-31-05.png" ftp.host.here
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment