After Work
The best club in Chicago
for Chicago Singles is
Highlife Adventures!
Are you looking for a
Jersey Girl T-Shirt
?
Kyoto Sushi
in Chicago, on Lincoln Ave.
Moody's Pub
in Chicago, has great burgers
Skylark
in Chicago, on Halsted .. excellent Friday fish fry!
|
UNIX
»
Commands
»
Basics
»
Displaying a File
# display file contents
cat myfile
# determine file type
file myfile
# display file, a screen at a time (Solaris)
pg myfile
# display first 100 lines of a file
head -100 myfile
# display last 50 lines of a file
tail -50 myfile
# display file that is changing, dynamically
tail errlog.out -f
|
|
|
|