- 论坛徽章:
- 2
|
回复 3# Shell_HAT
bash -vx unedpgf.sh
#!/bin/sh
#auto change unzip edpgf.tar
#author cyj
dir_file="/opt/ApusicV5/domains/mydomain/applications"
+ dir_file=/opt/ApusicV5/domains/mydomain/applications
file=`ls -1 registration15*`
ls -1 registration15*
++ ls -1 'registration15*'
ls: cannot access registration15*: No such file or directory
+ file=
#file=`ls -l |grep "registration15"|awk '{print $NF}'`
cd $dir_file
+ cd /opt/ApusicV5/domains/mydomain/applications
if [ ! -f "$file" ];then
echo " File does not exist,Please check..."
exit
else
unzip -o $file && rm -rf $file
fi
+ '[' '!' -f '' ']'
+ echo ' File does not exist,Please check...'
File does not exist,Please check...
+ exit
|
|