File: ncftpget

package info (click to toggle)
duplicity 0.8.17-1
  • links: PTS
  • area: main
  • in suites: bullseye
  • size: 6,136 kB
  • sloc: python: 22,382; sh: 519; ansic: 383; makefile: 25
file content (10 lines) | stat: -rwxr-xr-x 222 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/python3

from __future__ import print_function
from future import standard_library
standard_library.install_aliases()

import subprocess
import sys

sys.exit(subprocess.call(['cp', sys.argv[-2], sys.argv[-1]]))