脚本求助

发布于 2022-10-15 09:03:02 字数 2066 浏览 21 评论 0

在下面的这个脚本中,  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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

怪我闹别瞎闹 2022-10-22 09:03:02

回复 1# gulang2004xy

   3  -gt   2     3  大于  2

渔村楼浪 2022-10-22 09:03:02

谢谢!
回复 2# taojie2000

不知在何时 2022-10-22 09:03:02

跟c还是有区别的

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文