0

私はこれを機能させようとしていますが、私は取得し続けています

subprocess.call(['c:/cygwin/bin/bash.exe', '--login', '-i', 'rsync', '-zrgo', '--omit-dir-times', '--verbose', '--delete', '.', 'usertwo@192.168.1.1:/var/www/project/'])

--

bash: /usr/bin/rsync: cannot execute binary file
126
4

1 に答える 1

1

bash の「-c」(コマンド) オプションがありません。また、rsync コマンドを単一の文字列として指定する必要があります。

subprocess.call(['c:/cygwin/bin/bash.exe', '--login', '-i', '-c', 'rsync -zrgo --omit-dir-times --verbose --delete . usertwo@192.168.1.1:/var/www/project/'])

マニュアルページから:

-c string If the -c option is present,  then  commands  are  read  from
          string.   If  there  are arguments after the string, they are
          assigned to the positional parameters, starting with $0.

例えば:

# bash /bin/ls
/bin/ls: /bin/ls: cannot execute binary file
# bash -c "/bin/ls -l"
<ls output>
于 2013-02-23T00:03:10.430 に答える