【发布时间】:2016-04-17 09:49:37
【问题描述】:
" ././tst.ksh: line 16: ONL P BL9_RATED_EVENT_D 1,295 780 4,063,232 60 LOCA SYST AUTO: 无法打开[没有这样的文件或目录] "
我正在尝试在 -vx 模式下执行以下脚本 我不明白为什么在输出中我得到这个
!/bin/ksh -xv
#for i in `cat /tefnfs/tef/tools/tooladm/Users/Jithesh/prd3cust.log | grep ONL | column -t`
while i= read -r line
do
echo $i
stat=`echo $i | cut -d" " -f1`
typ=`echo $i | cut -d" " -f2`
tbs=`echo $i | cut -d" " -f3`
tot=`echo $i | cut -d" " -f4`
free=`echo $i | cut -d" " -f5`
lrg=`echo $i | cut -d" " -f6`
fr=`echo $i | cut -d" " -f7`
Ext=`echo $i | cut -d" " -f8`
All=`echo $i | cut -d" " -f9`
spc=`echo $i | cut -d" " -f10`
done < `cat /tefnfs/tef/tools/tooladm/Users/Jithesh/prd3cust.log | grep ONL | column -t`
+ cat /tefnfs/tef/tools/tooladm/Users/Jithesh/prd3cust.log | grep ONL | column -t+ cat /tefnfs/tef/tools/tooladm/Users/Jithesh/prd3cust.log
+ column -t
+ grep ONL
././tst.ksh: line 16: ONL P BL9_RATED_EVENT_D 1,295 780 4,063,232 60 LOCA SYST AUTO: cannot open [No such file or directory]
【问题讨论】: