Changeset 23722
- Timestamp:
- 02/14/19 01:25:23 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/os/issmscpin.py
r23716 r23722 8 8 """ 9 9 ISSMSCPIN get packages from host, using scp on unix, and pscp on windows 10 10 11 11 usage: issmscpin(host,packages,path) 12 12 """ … … 15 15 hostname=gethostname() 16 16 17 #first be sure packages are not in the current directory, this could conflict with pscp on windows. 17 #first be sure packages are not in the current directory, this could conflict with pscp on windows. 18 18 #remove warnings in case the files do not exist 19 19 for package in packages: … … 33 33 34 34 else: 35 36 35 if m.ispc(): 37 36 #use the putty project pscp.exe: it should be in the path. 38 39 37 #get ISSM_DIR variable 40 38 if 'ISSM_DIR_WIN' in os.environ: … … 54 52 else: 55 53 #just use standard unix scp 56 #string to copy multiple files using scp: 57 string= '\{'+','.join([str(x) for x in packages])+'\}'58 54 #string to copy multiple files using scp: 55 string="'{"+','.join([str(x) for x in packages])+"}'" 56 59 57 if port: 60 58 subprocess.call('scp -P %d %s@localhost:%s %s/. ' % (port,login,os.path.join(path,string),os.getcwd()),shell=True) 61 59 else: 62 subprocess.call('scp %s@%s:%s %s/.' % (login,host,os.path.join(path,string),os.getcwd()),shell=True) 63 60 subprocess.call('scp -T %s@%s:%s %s/.' % (login,host,os.path.join(path,string),os.getcwd()),shell=True) 64 61 #check scp worked 65 62 for package in packages: 66 63 if not os.path.exists(os.path.join('.',package)): 67 raise OSError("issmscpin error message: could not call scp on *nix system.") 68 64 raise OSError("issmscpin error message: could not call scp on *nix system for file '{}'".format(package))
Note:
See TracChangeset
for help on using the changeset viewer.