Hi
When I do this:
for POOL in `cat pools.txt`
do
echo "$POOL"
done
I get this:
NT
Oracle
Oracle2
Oracle3
System
Files
a cat of pools.txt reveals this:
#cat pools.txt
NT
Oracle
Oracle2
Oracle3
System Files
How do I get ksh to do want I intend, which is treat a variable with a space one "word"?
-John
When I do this:
for POOL in `cat pools.txt`
do
echo "$POOL"
done
I get this:
NT
Oracle
Oracle2
Oracle3
System
Files
a cat of pools.txt reveals this:
#cat pools.txt
NT
Oracle
Oracle2
Oracle3
System Files
How do I get ksh to do want I intend, which is treat a variable with a space one "word"?
-John