Skip to content

Instantly share code, notes, and snippets.

@fxn
Created March 28, 2011 09:16
Show Gist options
  • Save fxn/890185 to your computer and use it in GitHub Desktop.
Save fxn/890185 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
#
# Joins paragraphs so that they span one long line.
# Quoted or indented text are left untouched.
# Useful for Gmail.
#
open('| pbcopy', 'w') do |pbcopy|
pbcopy.write(`pbpaste`.gsub(/([^>\n])\n(\w)/, '\\1 \\2'))
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment