Created
January 16, 2009 07:06
-
-
Save tlockney/47854 to your computer and use it in GitHub Desktop.
This file contains 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
# transform a java property file into valid shell variables | |
awk 'BEGIN{FS=OFS="="}{gsub(/\#.*/,"")}{gsub(/\./,"_",$1)}{sub(/..*/,"\"&\"",$2)}1' $1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment