SHELL脚本,解压缩指定目录下的所有的ZIP文件到另一个目录下,如,文件目录为/opt/bin/,指定目录为/opt/wep,且目录下有其他类型文件
filenum=`find /opt/bin -name *.zip|wc -l`
if [ $filenum -eq 0 ]
then echo " file not find! "
else cp /opt/bin/*.zip /opt/wep执行报./cloudviewinstall.sh: line 5: syntax error: unexpected end of file
贴贴你的代码,这个看不出来你那里报错了。
追问filename=*.zip
filepath=/opt/run
fileforwardpath=/opt/run/test
cp ${filepath}/${filename} ${fileforwardpath}
cp: 无法 stat “/opt/run\r/*.zip\r”: 没有那个文件或目录 我可以切换的这目录下啊
你对应的文件夹下有zip文件吗?
大小写zip不一样的