Sponsored Content
Top Forums Shell Programming and Scripting Recursive FTP -- here at last. Post 47839 by weftnet.com on Thursday 19th of February 2004 05:06:10 PM
Old 02-19-2004
Question

when I get you script in and try to run it it get this:

$ ./HardFeed -rsd -l "ls -ls" server ftpuser /dir
password -
rdir = /dir
./HardFeed[111]: octal=binary: bad number
./HardFeed[111]: octal=binary: bad number


what do I need to do?
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Recursive FTP

I am trying to write a recursive FTP script and have come to a point where I need to test if the file is either a normal ascii file or a directory. My question is how do I test if the file is either ascii or directory. (1 Reply)
Discussion started by: aslamg
1 Replies

2. UNIX for Dummies Questions & Answers

recursive effect!!

I run the following command in some of my folders... and ended up with a huge mess!! find . -type f -exec perl -e 's/blabla/zzzxxxx/gi' -p -i.bak {} \; I had to kill the process and later when I checked with one of my folders.. ls vaditerm.dt.bak vaditerm.dt.bak.bak... (2 Replies)
Discussion started by: sskb
2 Replies

3. Shell Programming and Scripting

perl + Net::FTP::Recursive

Problem: It will not advance to the next user in the list. It always dies right after it sends the 2/2 files from the first users dir. $USERLIST="/export/home/mxdooley/perl_ftp/userlist"; $USER_DIR="/export/home/mxdooley/perl_ftp/homes";... (2 Replies)
Discussion started by: Optimus_P
2 Replies

4. Shell Programming and Scripting

recursive rcp

I wrote a shell script (AIX) to extract the file "/rep1/toto" from all the hosts referred in a list and send them to one local directory named ~/$host-$file with the hostname as prefix rcp -p user@host:/rep1/$file ~/$host-$file where file = toto ==> it works ! I would do the same thing... (6 Replies)
Discussion started by: Nicol
6 Replies

5. UNIX for Advanced & Expert Users

recursive sorting

In the ls command, -t option and -R option dont work simultaneously. ls -t ---> lists the files with sorting based on file date ls -R ---> lists the files recursively. How to make utilize both in the same command.? I want to sort the recursive files listing.. (1 Reply)
Discussion started by: fermisoft
1 Replies

6. Cybersecurity

Recursive SFTP

Hello, I need to transfer files from Serve1 to Server2. Previously I was using scp command. Now I have to use sftp (due to audit issues). The problem with sftp is (atleast to my level of knowledge) we cannot transfer dirs (and files within that dir). Is there a way to solve this? Looks like... (1 Reply)
Discussion started by: MohanTJ
1 Replies

7. UNIX for Dummies Questions & Answers

recursive wc on a directory?

Hi all, I need to count the number of lines in all the files under a directory (several levels deep). I am feeling extremely dumb, but I don't know how to do that. Needless to say, I am not a shell script wiz... Any advice? thanks in advance! (13 Replies)
Discussion started by: bimba17
13 Replies

8. UNIX for Dummies Questions & Answers

Recursive Permissions???

Is there anyway that I can change permissions on a directory and all its sub-directories and files using one single "chmod" command?? (5 Replies)
Discussion started by: the_red_dove
5 Replies

9. UNIX for Dummies Questions & Answers

recursive search and ftp

Could someone help me in recursive search and ftp'ing the files to remote server? The host machine will have /dir1/dira/list_of_files1 /dir1/dirb/list_of_files2 /dir1/dirc/list_of_files3 . . . so., I need to search from dir1 recursively (only one level down) and find all the files that... (1 Reply)
Discussion started by: brahmi
1 Replies

10. OS X (Apple)

Search recursive

before posting, I have tried to find my answer elsewhere. no luck. I need to find a file buried in a folder somewhere. Master folder has 10 sub folders. each sub folder has folders too. I found this but it does nothing I am on Mac and use Applescript. do shell script "find... (2 Replies)
Discussion started by: sbrady
2 Replies
net_aton(3C)															      net_aton(3C)

NAME
net_aton(), net_ntoa() - network station address string conversion routines SYNOPSIS
DESCRIPTION
and translate station addresses between hexadecimal, octal or decimal, and binary formats: converts a hexadecimal, octal, or decimal address to a binary address. converts a binary address to an ASCII hexadecimal address. Both routines are provided in the standard C library and are loaded automatically during compilation. net_aton Parameters The following parameters are used by dstr Pointer to the binary address returned by the function. sstr Pointer to a null-terminated ASCII form of a station address (Ethernet or IEEE 802.3). This address can be an octal, dec- imal, or hexadecimal number as used in the C language (in other words, a leading 0x or 0X implies hexadecimal; a leading 0 implies octal; otherwise, the number is interpreted as decimal). size Length of the binary address to be returned in dstr. The length is 6 for Ethernet/IEEE 802.3 addresses. net_ntoa Parameters converts a 48-bit binary station address to its ASCII hexadecimal equivalent. The following parameters are used by dstr Pointer to the ASCII hexadecimal address returned by the function. dstr is null-terminated and padded with leading zeroes if necessary. dstr must be at least (2 x size + 3) bytes long to accommodate the size of the converted address. sstr Pointer to a station address in its binary form. size Length of sstr. RETURN VALUE
and return NULL if any error occurs. EXAMPLES
#include <netio.h> #define destination_addr "0x00DD0002AD00" ... struct fis arg; char str[16]; ... (void) net_aton(arg.value.s, destination_addr, 6); /* arg.value.s = "<48-bit binary value>" */ (void) net_ntoa(str, arg.value.s, 6); /* str = "0x00DD0002AD00" */ AUTHOR
was developed by HP. SEE ALSO
thread_safety(5), lan(7). net_aton(3C)
All times are GMT -4. The time now is 04:11 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy