Created
February 18, 2016 05:40
-
-
Save spencerwhyte/f91e86bdf26ef6dae1a9 to your computer and use it in GitHub Desktop.
You have some html options, and you want the contents of the tags.
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
cat data | sed 's/<option value=".*">//g' | sed 's/<\/option>//g' | sed 's/^ *//' | sed 's/\&/\&/' | sed '/^$/d' | sed 's/$/",/' | sed 's/^/"/g' | tr '\n' ' ' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment