Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
print line
Name: johan Date: September 14, 2006 at 01:05:17 Pacific OS: Solaris 9 CPU/Ram: 1
Summary: if you have Python on your HPUX (i suppose) you can do this: f = open(your_file) while 1: line = f.readline() if line == '': break if "efgh" in line: print line ...
Summary: Hi, I am new to shell programming and I need your help. I just learn that I can use the sed comand to print certain lines of an input file. e.g. sed '1,3p' will print out line 1 to 3. I have a shel...
Summary: How I can search file and if word match, script will print that line and, for example, five previous line. (awk or other) 1 2 3 4 5 6 7 8 9 Match then will print line 4-9 ...