我有一个脚本,我需要他将参数传递给python程序。我接受了争论:
DAEMON_ARGS=""
start-stop-daemon --start --background --make-pidfile --pidfile $PIDFILE --startas $DAEMON \
$DAEMON_ARGS \
|| return 2
$ DAEMON是我的.py文件的路径。我需要传递一些像这样的数字参数
sudo /etc/init.d/sleepdaemon start 10
这个数字我必须传递给sleep.py。 sleep.py的代码:
#! env/bin python
import time
sleep(n)
如何使n = 10(从控制台传递的参数)?