vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Dear All, I would like to find out if the following scripts are the same. If not which one is correct. # Enable list of ttys. enable () { while test $# -gt '0' do /bin/su root -c "/usr/bin/enable /dev/tty$1" > /dev/null 2>&1 shift done } # Enable list of ttys. enable () { while test $# -gt '0' do /bin/su root -c "/usr/bin/enable /dev/$1" > /dev/null 2>&1 shift done } I will certainly appreciate your kind help. Thanx. Felix Mutale |