0

我有 cronjob 每天在特定时间运行脚本。该脚本用于转换特定文件夹中的大文件(约 2GB)。问题是我同事不是每天都把文件放在文件夹之前的时间,写成cronjob。

请帮助我在脚本中添加命令或编写第二个脚本:

  1. 检查文件是否存在于文件夹中。
  2. 如果上一个操作为真,则每分钟检查一次文件大小。(我想避免转换仍然传入的大文件)。
  3. 如果文件大小在 2 分钟内保持不变,则启动脚本进行转换。

到目前为止,我给你脚本的重要行:

cd /path-to-folder
for $i in *.mpg; do avconv -i "$i" "out-$i.mp4" ; done

10倍的帮助!

评论后的新代码:

文件夹中有文件!

#! /bin/bash


cdate=$(date +%Y%m%d)
dump="/path/folder1"
base=$(ls "$dump")

if [ -n "$file"]
then
    file="$dump/$base"
    size=$(stat -c '%s' "$file")
    count=0
    while sleep 10
    do
        size0=$(stat -c '%s' "$file")
        if [ $size=$size0 ]
        then $((count++))
             count=0
        fi
        if [ $count = 2 ]
        then break
        fi
    done
    # file has been stable for two minutes. Start conversion.

CONVERSION CODE

fi

终端消息:可能是错误???

script.sh: 17: script.sh: arithmetic expression: expecting primary: "count++"
4

2 回答 2

3
file=/work/daily/dump/name_of_dump_file

if [ -f "$file" ]
then
    # size=$(ls -l "$file" | awk '{print $5}')
    size=$(stat -c '%s' "$file")
    count=0
    while sleep 60
    do
        size0=$(stat -c '%s' "$file")
        if [ $size = $size0 ]
        then : $((count++))
        else size=$size0
             count=0
        fi
        if [ $count = 2 ]
        then break
        fi
    done
    # File has been stable for 2 minutes — start conversion
fi

鉴于稍微修改的要求(在评论中描述),并假设文件名不包含空格或换行符或其他类似的尴尬字符,那么您可以使用:

dump="/work/daily/dump"                 # folder 1
base=$(ls "$dump")

if [ -n "$file" ]
then
    file="$dump/$base"
    ...code as before...
    # File has been stable for 2 minutes - start conversion
    dir2="/work/daily/conversion"       # folder 2
    file2="$dir2/$(basename $base .mpg).xyz"
    convert -i "$file" -o "$file2"
    mv "$file" "/work/daily/originals"  # folder 3
    ncftpput other.coast.example.com /work/daily/input "$file2"
    mv "$file2" "/work/daily/converted" # folder 4
fi

如果文件夹中没有任何内容,则该过程退出。如果您希望它等到有文件要转换,那么您需要围绕文件测试循环:

while file=$(ls "$dump")
      [ -z "$file" ]
do sleep 60
done

这使用了一个鲜为人知的 shell 循环特性;您可以将命令堆叠在控件中,但控制循环的是最后一个的退出状态。

于 2012-10-30T20:18:33.367 回答
0

好吧,我终于做了一些工作代码如下:

#!/bin/bash

cdate=$(date +%Y%m%d)
folder1="/path-to-folder1"

cd $folder1

while file=$(ls "$folder1")
      [ -z "$file" ]
do sleep 5 && echo "There in no file in the folder at $cdate."
done

echo "There is a file in folder at $cdate"
size1=$(stat -c '%s' "$file")
echo "The size1 is $size1 at $cdate"
size2=$(stat -c '%s' "$file")
echo "The size2 is $size2 at $cdate"
if [ $size1 = $size2 ]
then
echo "file is stable at $cdate. Do conversion."

下一行是循环相同脚本的正确行吗???

else sh /home/user/bin/exist-stable.sh
fi

下面评论后的正确代码是

else exec /home/user/bin/exist-stable.sh
fi
于 2012-11-11T07:47:32.290 回答