Skip to content

Instantly share code, notes, and snippets.

@brpaz
Created January 1, 2015 18:35
Show Gist options
  • Save brpaz/a4d7171f2f99f132b0dc to your computer and use it in GitHub Desktop.
Save brpaz/a4d7171f2f99f132b0dc to your computer and use it in GitHub Desktop.
Prepend a string to the beginning of each line in a file #bash #aws #string (From: http://stackoverflow.com/questions/13586349/how-can-i-prepend-a-string-to-the-beginning-of-each-line-in-a-file
awk '{print "prefix" $0}' file
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment