我正在使用 shell 脚本向echo >
数据发送数据,$outputfile
并且始终有一个包含先前数据的旧文件$oldouptdata
。我需要做的如下:
echo "datahereto" > $ouptputfile
read $oldouptdata
diff $ouptputfile $olouptdata
if there is a difference then execute function (myfunction) then replace $oldoutputdata data with $outputfile data
这是我的场景。有什么帮助吗?