脚本求助
在下面的这个脚本中, if [ $name > 0 ]; then 这一句没有任何作用,当name = 0的时候,仍然运行这个if内的语句。这是什么原因
#!/bin/bash
prefix=University
post1=.txt
post2=.dat
output=/home/lxy/myshellprogramm/testoutput.dat
declare -i temp=0
declare -i name=0
declare -i next=0
declare -i rname=0;
for (( i=0; i<=999; i=i+1 ))
do
temp=`expr $i % 10`
name=`expr $i / 10`
if [ "$temp" == "0" ]; then
if [ $name > 0 ]; then
echo $name >> output
next=`expr $name - 1`
echo "touch "$prefix""$next""$post2 >> output
echo "sort -u "$prefix""$rname""$post1" > "$prefix""$next""$post2 >> output
echo "rm -f "$prefix""$rname""$post1 >> output
fi
else
rname=`expr $name \* 10`
echo "cat "$prefix""$i""$post1" >> "$prefix""$rname""$post1 >> output
echo "rm -f "$prefix""$i""$post1 >> output
fi
done
next=`expr $name - 1`
echo "touch "$prefix""$next""$post2 >> output
echo "sort -u "$prefix""$next""$post1" > "$prefix""$next""$post2 >> output
echo "rm -f "$prefix""$next""$post1 >> output
exit 0
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
回复 1# gulang2004xy
3 -gt 2 3 大于 2
谢谢!
回复 2# taojie2000
跟c还是有区别的