Articles in Networking
The following document provides a general overview of the network configuration process for Solaris. For a detailed review of Solaris network configuration please see Chapter 4 of the O’Reilly Solaris 8 Administration Guide by Paul …
An example of an FTP script with Korn shell.
For “$CONFTMP” input file of format: hostname username password
?View Code BASHcat "$CONFTMP" | fgrep -v "#" | while read LINE
do
FTPHOST=$(echo "$LINE" | awk ‘{print $1}’)
FTPUSER=$(echo "$LINE" | …
Pipe in Unix is a method of passing information from one command to another. The pipe take the output of the first command and sends it as input for the second command. The a second …


