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
»
Using Tar
# display contents of a file
tar tvf myfile.tar
# display contents of a diskette (Solaris)
volcheck
tar tvf /vol/dev/rdiskette0/unnamed_floppy
# copy files to a tar file
tar cvf myfile.tar *.sql
# format floppy, and copy files to it (Solaris)
fdformat -U -b floppy99
tar cvf /vol/dev/rdiskette0/floppy99 *.sql
# append files to a tar file
tar rvfn myfile.tar *.txt
# extract files from a tar filem to current dir
tar xvf myfile.tar
|
|
|
|