我正在尝试从shell脚本调用python脚本的参数化函数,并且还在shell脚本中打印python函数的返回值。 这是我的python脚本: sample_file.py **
def get_date_from_filename(filename,regex):
return filename[:8]
**
以下是我从其中调用python脚本的脚本文件:
** SampleTest.ksh
File_Name="20190101_test_dataset.csv"
RegEx="yyyymmdd"
python get_oDate.py
chmod u+x
output=$(python get_oDate.py "$File_Name" "$RegEx" 2>&1 >/dev/null)
echo "$output"
**
我可能会遗漏一些东西,但不确定是错过了什么确切的代码。