【shell脚本学习笔记】调用脚本将文件打包zip

调用脚本将文件打包zip

最近刚刚接触shell脚本,写了一点简单的练手。这里是用python调用脚本执行打包操作。
第一步,创建脚本:
#!/bin/sh
CERT_DIR_ZIP=/data/cert/keys																					
zip_user(){
  zip -P $zip_psw /data/frontend/tmp/$zip_name.zip $client/*
}
if [ "x$1" = "xzip" ];then
  cd $CERT_DIR_ZIP
  client=$2
  zip_psw=$3
  zip_name=$4
  zip_user
  cd -
fi
第二步:调用脚本
我这里用的是python调用的脚本文件去执行,注意传入的字符格式。我这里exec_shell写在公共类中.
exec_shell(self, '/bin/sh /data/root/sbin/usercert.sh zip ' + CLIENT + ' "' + zip_psw + '" ' + zip_name)
#具体方法
import commands
def exec_shell(self, shell):
    (status, out) = commands.getstatusoutput(shell)
    if (status != 0): # 执行脚本失败
        self.log.debug("exec [%s] fail. out=%s"%(shell, out))
    else:
        self.log.debug("exec [%s] success. out=%s"%(shell, out))
    return (status, out)

你可能感兴趣的:(linux,shell,python,脚本)