vote up 0 vote down star

I need to put different codes in one file to many files. The file is apparantly shared by AWK's creators at their homepage. The file is also here for easy use.

My attempt to the problem

I can get the lines where each code locate by

awk '{ print $1 }'

However, I do no know how

  1. to get the exact line numbers so that I can use them
  2. to collect codes between the specific lines so that the first word of each line is ignored
  3. to put these separate codes into new files which are named by the first word at the line

I am sure that the problem can be solved by AWK and with Python too. Perhaps, we need to use them together.

[edit] after the first answer

I get the following error when I try to execute it with awk

$awk awkcode.txt 
awk: syntax error at source line 1
 context is
     >>> awkcode <<< .txt
awk: bailing out at source line 1
flag

2 Answers

vote up 1 vote down check

Did you try to:

  1. Create a file unbundle.awk with the following content:

$1 != prev { close(prev); prev = $1 } { print substr($0, index($0, " ") + 1) >$1 }

  1. Remove the following lines form the file awkcode.txt:

    # unbundle - unpack a bundle into separate files

$1 != prev { close(prev); prev = $1 } { print substr($0, index($0, " ") + 1) >$1 }

  1. Run the following command:

awk -f unbundle.awk awkcode.txt

link|flag
I get the following error: $awk -f unbundle.awk awkcode.txt awk: can't open file unbundle.awk source line number 1 source file unbundle.awk context is >>> <<< – Masi Mar 11 at 13:01
Did you create the file unbundle.awk first? Is it accessible? – radoulov Mar 11 at 16:31
Thank you! I did not know that the first statement in the file is the AWK command :) – Masi Mar 19 at 17:33
vote up 2 vote down

Are you trying to unpack a file in that format? It's a kind of shell archive. For more information, see http://en.wikipedia.org/wiki/Shar

If you execute that program with awk, awk will create all those files. You don't need to write or rewrite much. You can simply run that awk program, and it should still work.

First, view the file in "plain" format. http://dpaste.com/12282/plain/

Second, save the plain version of the file as 'awkcode.shar'

Third, I think you need to use the following command.

awk -f awkcode.shar


If you want to replace it with a Python program, it would be something like this.

import urllib2, sys

data= urllib2.urlopen( "http://dpaste.com/12282/plain/" )
currName, currFile = None, sys.stdout
for line in data:
    fileName, _, text= line.strip().partition(' ')
    if fileName == currName:
        currFile.write(line+"\n")
    else:
        if currFile is not None:
            currFile.close()
        currName= fileName
        currFile= open( currName, "w" )
if currFile is not None:
    currFile.close()
link|flag
I get the following error after I removed the firs 3 lines $awk -f awkcode.shar awk: syntax error at source line 1 source file awkcode.shar context is >>> emp <<< .data Beth 4.00 0 6 missing }'s missing ] 2 missing )'s awk: bailing out at source line 3232. I get similar error with the lines. – Masi Mar 11 at 13:04
I get a following error for the Python code: NameError: name 'sys' is not defined WARNING: Failure executing file: <awkcodes.py> – Masi Mar 11 at 13:07
Fixed the python. – S.Lott Mar 11 at 15:02
S.Lott: I get the following error now: dpaste.com/13683 – Masi Mar 12 at 20:22
Fixed. "fileName, _, text= line.strip().partition(' ')" You should learn Python, you could do your own debugging. – S.Lott Mar 12 at 20:28

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.