English 中文(简体)
当文件在闪盘中存在文件时
原标题:While file exists in bash

基本上它检查文件是否存在 ok. temp 。 如果它存在 。 如果它存在的话, 它会在重新检查之前进入一个两秒钟的睡眠循环。 在文件被认为存在之后, 它会继续 。

不幸的是,我收到以下错误的代码:

#!/bin/sh
# Read the sensor values
if [ ! -f saved.txt ]
then
    touch saved.txt
fi 

#saved values count
sCount=0

#value aggregates
vTTemp=0
vTHumid=0
vTLux=0

#previous aggregates
pTTemp=0
pTHumid=0
pTLux=0

while : 
do
vTemp=0
vHumid=0
vLux=0

if [ $sCount -gt 0 ] 
then
    if [ $(( $sCount % 5 )) -eq 0 ]
    then
        #set previous aggregates as current
        pTTemp=$vTTemp
        pTHumid=$vTHumid
        pTLux=$vTLux

        #reset current aggregates
        vTTemp=0
        vTHumid=0
        vTLux=0
    fi
fi

    while [ ! –f ok.temp ]
    do
        sleep 20
    done

    if [ -f logfile.txt ]
    then
        rResult=`tail -1 logfile.txt`
        rSaved=`tail -1 saved.txt`
        if [ $rResult -eq $rSaved ]
        then
            vTemp=`echo $rResult | cut -d" " -f1`
            vHumid=`echo $rResult | cut -d" " -f2`
            vLux=`echo $rResult | cut -d" " -f3`
            echo $rResult >> saved.txt

            # aggregate results
            vTTemp=`expr $vTTemp + $vTemp`
            vTHumid=`expr $vTHumid + $vHumid`
            vTLux=`expr $vTLux + $vLux`
            echo  Most recent results recieved from sensor has been saved 
        else
            echo  Most recent result has already been saved, skipping 
        fi
    fi

    echo  [Previous] Temp: $pTTemp  Humid: $pTHumid  Lux: $pTLux
    echo  [Current] Temp: $vTTemp  Humid: $vTHumid  Lux: $vTLux

    sCount=`expr $sCount + 1`
done

我得到了这些错误:

第43行=同时[! -f OK.temp]

line 43: [: f: unary operator expected

第52行 = [$RResult - equal $rSaved]

line 52: [: too many arguments

如有任何帮助将不胜感激:)

问题回答

这不是第43行的破折号 - 它是一个" http://www.fileformat.info/info/unicode/char/2013/index.htm" rel=“nofollow” en shall (拷贝它并在该页面上搜索看它)。 你从博客上复制了这个代码吗? 它们经常在他们应该到 t 的地方替换代码。 代码应该读 :

while [ ! -f ok.temp ]

-eq 指数字,而不是字符串 - 这应该可以做这个把戏( 引号很重要 ) :

if [ "$rResult" = "$rSaved" ]

很可能是因为您重新使用未引用的变量,这些变量在单方括号内是空的。您可以通过使用首选的双方括号形式或引用变量来解决这个问题(不必同时这样做)。

您已经标记了您的问题 < a href=" / questions/ talk/ bash" class-tag" 类 = “ post-tag” 标题 = “ 显示标有 "rel=" tag" 的问号 'bash' > bash , 但您的文稿上写着 < code\\ >!/ bin/sh , 您的文稿形式遵循伯恩·贝壳大会, 而不是使用巴什特有的功能。 如果您喜欢, 我可以评论您如何利用这些巴什特质 。

很可能在脚本中某些变量没有设置或空。 您可以设置 set -x 以打开调试模式 。

您的一个变量是空的, 或包含多个单词。 使用引号 :

if [ "$rResult" = "$rSaved" ]




相关问题
KornShell- Creating a fixed width text file

I need to create a simple fixed width text file in KornShell (ksh). My current attempt using printf to pad the string isn t working out very well. What s the shortest, cleanest way to create a fixed ...

unix find command

how to use the find command to find files/directories which are not matching the pattern. for eg: find <some options > -name "dontfile.txt" should give me output of all the find whose file ...

encoding of file shell script

How can I check the file encoding in a shell script? I need to know if a file is encoded in utf-8 or iso-8859-1. Thanks

Case insensitive comparison of strings in shell script

The == operator is used to compare two strings in shell script. However, I want to compare two strings ignoring case, how can it be done? Is there any standard command for this?

1. 露台式照像

在Windows XP中,没有一时出现指挥时,是否有办法操作一种灰色文字? 我常常需要把“善待”(工作)与“灰色”同起来,即使我的文字没有产出,......

热门标签