我有以下脚本:
#!/bin/bash
y=$(ls -t ./pics/0/*.png | head -n 2 | tail -n 1)
new=$(ls -t ./pics/0/*.png | head -n 1)
while true
do
if cmp --silent "$y" "$new" ; then
y=$(ls -t ./pics/0/*.png | head -n 1)
base64 $y | tr -d '\n' | sed '$ a \'
new=$(ls -t ./pics/0/*.png | head -n 1)
fi
done
我究竟做错了什么?需要明确的是,我的目标是比较最新文件是否与之前的最新文件不同,并且仅当它生成唯一的 BASE64 到 STDOUT 时(这意味着它应该只打印一次)。
答案1
请注意,以下代码片段不适用于包含空格、制表符或换行符的文件名。
要了解有关find
此处使用的 - 命令的更多信息,请参考https://unix.stackexchange.com/a/240424/364705
#!/bin/bash
lastrun=''
while true; do
read -r newer older <<< \
$(find . -type f -exec stat -c '%Y %n' {} \; \
| sort -nr \
| awk 'NR==1,NR==2 {print $2}'\
| xargs )
if [ "$newer" == "$lastrun" ]; then
:
else
if ! cmp "$newer" "$older" > /dev/null ; then
base64 "$newer"| tr -d '\n' | sed '$ a \'
lastrun="$newer"
fi
fi
done
以及使用的解决方案inotify-wait
:
#!/bin/bash
lastfile=''
inotifywait -m /path/to/somewhere -e close -e moved_to |
while read path action file; do
if [ "$lastfile" != '' ];then
if ! cmp "${path}$file" "${path}${lastfile}" > /dev/null ; then
base64 "${path}${file}"
fi
fi
lastfile="$file"
done