免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
楼主: startkill
打印 上一主题 下一主题

如何解决在SHELL中将文件中某几个字符赋值给变量的问题(已解决) [复制链接]

论坛徽章:
0
11 [报告]
发表于 2008-06-13 15:10 |只看该作者

回复 #9 liaosnet 的帖子

这样应该是不行的。

下面是我的shell

#!/bin/sh     

echo
echo "test 10000 reboot"
echo

declare -i reboottimes=`awk -F":" '/reboottimes/{print $2}' /tmp/test_reboot`

echo " this is the ${reboottimes} reboot test"
#reboottimes=`echo $reboottimes|cut -d\. -f1`   
reboottimes=`expr $reboottimes + 1`
echo " this is the ${reboottimes} reboot test"     

if [ $reboottimes -eq 10000 ];then
        echo " this is the ${reboottimes} reboot test"
        cat > /tmp/test_reboot <<EOF
        reboottimesnewnumber
        EOF
        sleep 20
else
        echo " already finish the testing "
fi
exit

调试:
sh -x ./test
......
expr: non-numeric argument
......

论坛徽章:
0
12 [报告]
发表于 2008-06-13 15:11 |只看该作者
原帖由 liaosnet 于 2008-6-13 15:00 发表
从你的shell上看,你的shell基础很弱....
给个完整的例子

11.txt
number:1235
date:20080613

11.sh
#!/bin/sh
newnumber=`awk -F":" '/number/{print $2}' 11.txt`
newdate=`awk -F":" '/date/{prin ...



呵呵·感谢回复,我对SHELL确实很弱。也请多多指教·谢谢··

论坛徽章:
11
金牛座
日期:2015-03-19 16:56:22数据库技术版块每日发帖之星
日期:2016-08-02 06:20:00数据库技术版块每日发帖之星
日期:2016-04-24 06:20:00数据库技术版块每日发帖之星
日期:2016-04-13 06:20:00IT运维版块每日发帖之星
日期:2016-04-13 06:20:00数据库技术版块每日发帖之星
日期:2016-02-03 06:20:00数据库技术版块每日发帖之星
日期:2015-08-06 06:20:00季节之章:春
日期:2015-03-27 15:54:57羊年新春福章
日期:2015-03-27 15:54:37戌狗
日期:2015-03-19 16:56:41数据库技术版块每日发帖之星
日期:2016-08-18 06:20:00
13 [报告]
发表于 2008-06-13 15:15 |只看该作者

回复 #11 greegree 的帖子


declare -i reboottimes=`awk -F":" '/reboottimes/{print $2}' /tmp/test_reboot`
的输出打印出来.或者../tmp/test_reboot 这个文件...

        cat > /tmp/test_reboot <<EOF
        reboottimesnewnumber
        EOF

这里第二个EOF要顶格....$newnumber 这个变量未定义..谢谢.....

论坛徽章:
0
14 [报告]
发表于 2008-06-13 15:16 |只看该作者
原帖由 greegree 于 2008-6-13 15:10 发表
这样应该是不行的。

下面是我的shell

#!/bin/sh     

echo
echo "test 10000 reboot"
echo

declare -i reboottimes=`awk -F":" '/reboottimes/{print $2}' /tmp/test_reboot`

echo " this is  ...



这位兄弟的可以解决我的一个问题,但是日期递增问题没有解决。谢谢·呵呵·

论坛徽章:
0
15 [报告]
发表于 2008-06-13 15:23 |只看该作者
非常感谢两位的回复及讨论··谢谢大家·

论坛徽章:
0
16 [报告]
发表于 2008-06-13 15:25 |只看该作者

回复 #13 liaosnet 的帖子

不好意思,贴错了
/tmp/test_reboot

reboottimes:1

test_rb

#!/bin/sh     

echo
echo "test 10000 reboot"
echo

reboottimes=`awk -F":" '/reboottimes/{print $2}' /tmp/test_reboot`

echo " this is the ${reboottimes} reboot test"
reboottimes=`expr $reboottimes + 1`
echo " this is the ${reboottimes} reboot test"     
exit

sh -x /tmp/test_rb
sh -x ./test_rb
+ echo

+ echo test 10000 reboot
test 10000 reboot
+ echo

+ awk -F: /reboottimes/{print $2} /tmp/test_reboot
+ reboottimes=1
reboot test is the 1
reboot test 1
+ 1pr 1
expr: non-numeric argument
+ reboottimes=
+ echo  this is the  reboot test
this is the  reboot test
+ exit

从测试的结果分析:
1)首先读取是没有问题的,从文件中的确读到数字1
2)进行expr运算时,提示为非数字

谢谢

论坛徽章:
3
CU大牛徽章
日期:2013-03-13 15:29:07CU大牛徽章
日期:2013-03-13 15:29:49CU大牛徽章
日期:2013-03-13 15:30:19
17 [报告]
发表于 2008-06-13 15:38 |只看该作者
  1. #!/bin/sh

  2. newnumber=`awk -F ":" '/number/{print $3}' file`
  3. newdate=`awk -F ":" '/data/{print $3}' file`

  4. newnumber=$(($newnumber+1))

  5. if [ `date +"%Y%m%d"` != "$newdate" ];then

  6.         newdate=`date +"%Y%m%d"`
  7. fi

  8. cat >file <<END

  9. 1:number:$newnumber
  10. 2:date:$newdate

  11. END
复制代码


  1. [root@localhost shell]# cat file

  2. 1:number:1234
  3. 2:date:20080612

  4. [root@localhost shell]# ./1.sh
  5. [root@localhost shell]# cat file

  6. 1:number:1235
  7. 2:date:20080613

  8. [[root@localhost shell]# ./1.sh
  9. [root@localhost shell]# cat file

  10. 1:number:1236
  11. 2:date:20080613
复制代码

[ 本帖最后由 MYSQLER 于 2008-6-13 15:40 编辑 ]

论坛徽章:
0
18 [报告]
发表于 2008-06-13 15:42 |只看该作者
问题已解决。

参考 http://blog.chinaunix.net/u/12467/showart_653077.html

修改/tmp/test_reboot:

reboottimes:1.



修改/tmp/test_rb

#!/bin/sh     

echo
echo "test 10000 reboot"
echo

reboottimes=`awk -F":" '/reboottimes/{print $2}' /tmp/test_reboot`
reboottimes=`echo $reboottimes|cut -d\. -f1`
echo " this is the ${reboottimes} reboot test"
reboottimes=`expr $reboottimes + 1`
echo " this is the ${reboottimes} reboot test"     
exit



测试:
sh -x /tmp/test_rb

sh -x test_rb
+ echo

+ echo test 10000 reboot
test 10000 reboot
+ echo

+ awk -F: /reboottimes/{print $2} /tmp/test_reboot
+ reboottimes=1.
+ echo 1.
+ cut -d. -f1
+ reboottimes=1
+ echo  this is the 1 reboot test
this is the 1 reboot test
+ expr 1 + 1
+ reboottimes=2
+ echo  this is the 2 reboot test
this is the 2 reboot test
+ exit

论坛徽章:
0
19 [报告]
发表于 2008-06-13 15:48 |只看该作者
原帖由 MYSQLER 于 2008-6-13 15:38 发表
#!/bin/sh

newnumber=`awk -F ":" '/number/{print $3}' file`
newdate=`awk -F ":" '/data/{print $3}' file`

newnumber=$(($newnumber+1))

if [ `date +"%Y%m%d"` != "$newdate" ];then

        ...


这种转换方式,我试了一下。
可能我是在嵌入式开发板上跑shell,用的busybox的默认的ash。执行结果与你不一样。

我只有在数字后面加个点,然后通过cut来间接转才行。

谢谢讨论。

论坛徽章:
3
CU大牛徽章
日期:2013-03-13 15:29:07CU大牛徽章
日期:2013-03-13 15:29:49CU大牛徽章
日期:2013-03-13 15:30:19
20 [报告]
发表于 2008-06-13 15:58 |只看该作者
原帖由 greegree 于 2008-6-13 15:48 发表


这种转换方式,我试了一下。
可能我是在嵌入式开发板上跑shell,用的busybox的默认的ash。执行结果与你不一样。

我只有在数字后面加个点,然后通过cut来间接转才行。

谢谢讨论。



我的是bash可以解决楼主的问题,你的那个.可以用sed解决

  1. [root@localhost shell]# cat file
  2. reboottimes:1.
  3. [root@localhost shell]# sed 's/.*\(1\)./\1/' file
  4. 1
  5. [root@localhost shell]#
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP