|
|
FP Transfer
I will be transferring files from a Windows server to a SCO server and =
want to create a single transfer file. I don't believe that I can do =
that in the interactive mode, and there are too large a number of files =
to fit them all onto one command line. Can anyone tell me if the file =
names can be put into a text file and have the command line use the text =
file as the source of the file names to be transferred? If the text =
file can be used in this manner, what is the exact syntax to be used?
Thanks,
Rodgers Hemer
206.523.2329
r.hemer@w-link.net
|
|
0
|
|
|
|
Reply
|
Rodgers
|
11/16/2009 9:47:40 PM |
|
Rodgers Hemer wrote:
> I will be transferring files from a Windows server to a SCO server
> and want to create a single transfer file. I don't believe that I
> can do that in the interactive mode, and there are too large a number
> of files to fit them all onto one command line. Can anyone tell me
> if the file names can be put into a text file and have the command
> line use the text file as the source of the file names to be
> transferred? If the text file can be used in this manner, what is
> the exact syntax to be used?
There are many ways to do this. One way is to make a tar "archive" file.
you'll need a copy of tar for Windows to archive the files. I use the
tar from http://unxutils.sourceforge.net/ but many others exist.
c:
cd \sourcefolder
tar cvf transfer.tar thisfolder otherfolder
Will create an archive in transfer.tar of all the files and
subdirectories within both c:\sourcefolder\thisfolder and
c:\sourcefolder\otherfolder. You can add whatever other directories you
need to the end of the command. You don't need to list files individually.
If you really want to include files using a text file containing
filenames, use tar's -I option
tar cvf transfer.tar -I filenames.txt
After transferring the archive file to Unix (for which I'd use FTP)
cd /destination
tar xvf /path/to/transfer.tar
Which will extract the files into /destination/thisfolder and
/destination/otherfolder
--
RGB
|
|
0
|
|
|
|
Reply
|
RedGrittyBrick
|
11/17/2009 7:48:28 PM
|
|
|
1 Replies
193 Views
(page loaded in 0.05 seconds)
Similiar Articles: File Transfer over TCP - comp.unix.programmerHi , I need a solution for file transfer over TCP. I've written a code (file sender ... I found this: > void str_cli(FILE *fp, int sockfd) > { > FILE *send_fp ... slow MUL & DIV - comp.lang.asm.x86-- write(*,*) transfer((/17.392111325966148d0,6.5794487871554595D-85, & 6.0134700243160014d ... The FP add and multiply units can both perform 2 single-precision ops per cycle ... LSA Disk Sector Read - using int 13h ah 42 (extended read) - comp ...... reserved1; //reserved BYTE no_of_blocks; //no:of blocks for transfer ... disk_pack.reserved2=0x0; disk_pack.TransAddr = (unsigned long) MK_FP( FP ... help me with Impulse invariance - comp.soft-sys.matlab... in the passband Rs = 50;% minimum attenuation in stopband Wp = 2 * fp / Fd ... calculation of the frequency response of analog integrated system from its transfer ... Problem sending binary file via socket. - comp.unix.programmer ...Hi all, My client code are: send(fd, argv[2], strlen(argv[2]) + 1, 0); fp ... File ... the binary file over the network using tcp socket. ... file transfer over TCP ... Floating point problem (again) - comp.lang.asm.x86... something similar before, but now I'm convinced there is either a compiler or a FP ... ifl can use SSE2, for e.g. -- write(*,*) transfer((/17.392111325966148d0,3 ... MPxIO SAN root partition install problem. - comp.sys.sun.admin ...It doesn't seem to transfer to the actual install, therefore the box just reboots after ... I think you're talking about the fp.conf file, but it defaults to "mpxio-disable ... Magic square : Help with my homework - comp.lang.prolog-----=mesnews_0_1116091355 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer ... other hand, comprehensions are often used to simulate Prolog's capabilities in FP. The file just loaded does not appear to be executable - comp.unix ...{0} ok boot -s Boot device: /pci@8,600000/SUNW,qlc@4/fp@0,0/disk@1,0 File and ... No tftpdnld command - comp.dcom.sys.cisco... mode to transfer the files. VisualC++ vs GCC: read in a number in exponential notation - comp ...Identical parsing of different FP formats by the stream library has been broken ... Direct Form 1 biquad using fixed point arithmetic in ... out in transfer function [b, a ... Transfer Worksheets - Monthly Transfer ReportMonthly Transfer Report. Directions for Completing the Monthly Transfer Report (PDF) 2012-13 Transfer Worksheets (Excel) 2011-12 Transfer Worksheets (Excel) The message is "FP transfer roller expired" - FixYaThe message is "FP transfer roller expired" The printer does not print the red light is on. 7/19/2012 8:41:59 PM
|
|
|
|
|
|
|
|
|