我有一个指向Python脚本的shell脚本。
script.sh
#!/bin/bash
python /folder/script.py
Python脚本采用一个参数,例如script.py -d 20210107
我尝试运行带有日期参数(如script.sh -d 20210107
(的shell脚本,但这不起作用。我需要在我的shell脚本中添加一些东西来修复这个问题吗?
#!/bin/bash
python /folder/script.py "$@"
使用$@将参数从上脚本传递到下脚本。