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.
Use vi to read Unix manual
Name: Luke Chi Date: August 9, 2005 at 06:46:47 Pacific OS: Solaris CPU/Ram: 8
Comment:
UNIQUE=`date '+%y%m%d%H%M%S'` HEAD=/tmp/${LOGNAME} TAIL=man_1 TMP_FILE=${HEAD}_${UNIQUE}.$TAIL man "$@" | col -bx > $TMP_FILE sh -c "sleep 1; rm $TMP_FILE" & vi $TMP_FILE
Name: kamalpreet Date: August 9, 2005 at 21:02:01 Pacific
Reply:
there is an eaisier way man "command" > "file_name" now use any editor to view this file..
0
Response Number 2
Name: Jim Boothe Date: August 10, 2005 at 06:11:31 Pacific
Reply:
On some platforms, and depending on your terminal type, redirecting output of man to a file will capture a large amount of binary garbage into the file, rendering it unreadable.
Summary: Hi all, I'm having problems reading in data from a data file when I use the cat command within a ksh script. I want to read in the whole line at a time, and not lose the spaces within it. #test.dat 37...
Summary: Hi I am a beginner. I ftp a text file using binary and now when I modify the files I see a lot of ^M symbol at the end of every line. How do I get rid of this symbol quickly? I am about 200 lines per ...
Summary: If you already know awk, then the most of the issue is solved. Just use awk to read in a line at a time and to assign the designate values to their respective variables. Hope this helps, good luck. ...