Newsgroups: comp.sys.mac.apps
Path: utzoo!utgpu!news-server.csri.toronto.edu!rpi!zaphod.mps.ohio-state.edu!caen!hellgate.utah.edu!csn!boulder!spot.Colorado.EDU!weverka
From: weverka@spot.Colorado.EDU (Robert T. Weverka)
Subject: Re: Files from Sun to a Mac
Message-ID: <1991Jun21.174600.24630@colorado.edu>
Keywords: suntar
Sender: news@colorado.edu (The Daily Planet)
Nntp-Posting-Host: spot.colorado.edu
Organization: University of Colorado, Boulder
References: <1054@macuni.mqcc.mq.oz> <sulkanen.677451111@xanth> <1991Jun21.065957.24540@hardy.u.washington.edu>
Date: Fri, 21 Jun 1991 17:46:00 GMT
Lines: 39

In article <1991Jun21.065957.24540@hardy.u.washington.edu> sentvas@hardy.acs.washington.edu (Senthilvasan Supramaniam) writes:
>	I just checked, SunTar is available by anonymous ftp from sumex-aim
>in the directory info-mac/unix.

you will of course need to learn how to use tar on the sun end of things.

If you are a unix hack you'll want to read the Unix manual on tape archives.
   man tar

If you're not, here is what to do.


Initialize disk                                 fdformat

list the contents of disk                       tar tf /dev/rfd0
list the contents of disk (long format)         tar tvf /dev/rfd0

Replace entire disk contents with new           tar cvf /dev/rfd0 filename
Add a file to the disk                          tar rvf /dev/rfd0 filename

Put entire disk contents into current directory tar xf /dev/rfd0
Put a disk file into current directory          tar xf /dev/rfd0 filename

_____________________________________________________________________
to make things easy add these to you .cshrc file

alias dls tar tf /dev/rfd0
alias dll tar tvf /dev/rfd0
alias cp2d tar rvf /dev/rfd0
alias cpfd tar xf /dev/rfd0

You may of course name these differently, the motivation for these names is:
As memory aid "d" is for disk,
"dls"            should work like unix ls command.
"dll"            should work like unix ls -l
"cp2d filename"  copy filename to disk
"cpfd filename"  copy from disk


