Displaying 1 result from an estimated 1 matches for "ds8100".
Did you mean:
ds8000
2009 Sep 29
3
Script consumes memory
...Linux allows this to run unchecked to the
detriment of the entire system.
---- SCRIPT -----
#!/bin/sh
FTP="/usr/bin/ftp"
#
VMID="asystem.ourcompany.com"
VMUser="STATDASD"
VMPass="STATDASD"
VMDir="VMSYSA:."
DataFile="data.txt"
VMFile="DS8100.DATA"
#--- Get some information about me
#--work from the same directory as the script
MYSCRIPT=`$BASENAME $0`
MYSCRIPTDIR=`$DIRNAME $0`
if [ $MYSCRIPTDIR != "." ]
then
cd $MYSCRIPTDIR
fi
#--- FTP to MAINT on mkmfvm
$FTP -vn <<$$EOD
open $VMID
user $VMUser $VMPass
cd $VMDir...