Might I suggest rdist.<br><br>Rdist can easily be set up to distribute and/or syncronize files across systems. It is easily configurable and quick to implement.
What version of windows are you running? Windows 95/98 do not have an ftp server out of the box. (They do have ftp clients.) You may need to install an ftp server on your windows machine.
I would use:<br><br>NON_DIGITS=`echo $INPUT ¦ sed 's/[0-9]//g'`<br>if [ -z "$NON_DIGITS" ]<br>then<br> $INPUT is a number<br>else<br> $INPUT is not a number<br>fi
Try:<br><br>mount -F cdfs -o cdcase /dev/dsk/cXtXdX /cdrom<br><br>If that does not wor, you will need to use pfs_mount. Make sure you have the latest pfs patch installed:<br>PHCO_15453<br><br>Then, start the apprpriate demons:<br>nohup /usr/sbin/pfs_mountd &<br>nohup /usr/sbin/pfsd...
Is the problem in getting sendmail to accept the attachment or finding an encryption (for security) solution that runs on both platforms?<br><br>If the former, use uuencode.
That is -- if I understand what you want. My quick test produced:<br><br># cat t<br>/* comment 1<br>comment 2 */<br>text<br>text 2 // comment3<br>// comment4<br>text 3<br>text 4 // comment4<br><br># sed -e '/^\/\*/d' -e '/\*\/$/d' -e...
It is not pretty, but:<br><br>sed -e '/^\/\*/d' -e '/\*\/$/d' -e 's/\/\/[ -z]*//' -e '/^$/d' $INFILE > $OUTFILE<br><br>should work. The character in the [ -z] test is a tab.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.