File: my_gsiftp_out.sh

package info (click to toggle)
dpm-postgres 1.7.4.7-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 13,788 kB
  • ctags: 10,782
  • sloc: ansic: 146,136; sh: 13,362; perl: 11,142; python: 5,529; cpp: 5,113; sql: 1,790; makefile: 955; fortran: 113
file content (16 lines) | stat: -rwxr-xr-x 367 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash
#
# This script is a part of SRM test suite. This is a wrapper script around
# rfcp, used to copy files to the remote machine (to TURL got from SRM
# server).
#

# $Id: my_gsiftp_out.sh,v 1.5 2005/11/29 11:04:19 jamesc Exp $

echo 'TURL:' $2
TURL_RFCP=$2  ##  24/05/05
echo 'TURL_gsiftp:  ' $TURL_RFCP
globus-url-copy file://`pwd`/$1 $TURL_RFCP

exit $?