home *** CD-ROM | disk | FTP | other *** search
- Some Real Quick Ones.
- ~~~~~~~~~~~~~~~~~~~~~
-
- * view a text file without downloading it first?
- On Unix, try: get file "|more" [or] get file -
- On VAX, try: get file tt:
-
- * view a directory using `more` in FTP?
- dir . |more
-
- * extract .tar.Z
- zcat file | tar -xf -
-
- * extract .tar.z or .tar.gz or .tgz?
- gzcat file | tar -xf -
-
- * extract shar?
- /bin/sh file
-
- * compile source?
- cd to directory with Makefile
- make
-
- * sz over a 7-bit connection?
- sz -e file
-
- * speed up Zmodem
- sz -Z -b
-
-