Application Delivery Management
Application Modernization & Connectivity
IT Operations Management
CyberRes
################BEGIN SCRIPT##################
#!/bin/bash
directory=/var/opt/novell/log
for file in $( ls $directory/*log )
do
echo "xterm -T $file -e 'tail -f <$directory/$file' &"
xterm -T $file -e "tail -f <$file" &
done
cat /etc/opt/novell/eDirectory/conf/.edir/instances.0 | while read line
do
echo $line
treename=`cat $line|grep n4u.base.tree-name`
TREE=${treename:19}
xterm -T $TREE -e "ndstrace --config-file $line" &
done
################END SCRIPT##################
ssh -X root@192.168.230.100