Maison > Questions et réponses > le corps du texte
auto.sh
# auto.sh 需要调用3个python脚本1.py 2.py 3.py
用if判断参数进行选择执行哪个脚本
py脚本根据shell脚本传入的参数进行相关操作
Méthode Exécuter
./auto.sh -h
./auto.sh cc -v 1.0 list
Voici comment passer le paramètre bash entrant au script python à partir du second. Le nombre de paramètres passés à python est variable, au moins un
.学习ing2017-06-28 09:26:40
#!/bin/bash
if [ $# -lt 2 ]
then
echo 'Please input more than 2 parameter'
exit 3
fi
ALL_PARA=$@
# 自己变通吧, 将下面的语句换成需要执行的python语句
echo "Python 接受到的参数: ${ALL_PARA:2}" # 这语法能够获取第二个参数到最后的内容