-
-
Save raul/890254 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#!/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