sftp - how many files


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting sftp - how many files
# 1  
Old 03-25-2005
Data sftp - how many files

Hello!!

Another sftp question...

I need to know inside the sftp environment how many files exists, or if there is any file, before I do a

mget *



Any ideas?

Thanks in advance
:O)
# 2  
Old 03-26-2005
Try 'ls' command and count output lines (can be sent to pipe).
# 3  
Old 03-27-2005
Quote:
Try 'ls' command and count output lines (can be sent to pipe).
I don't think that will work. You cannot use pipe at the sftp prompt.

If you can connect via ssh to that system, you can write a simple command that will do the job for you:

Code:
ssh -l <user> <host> cd <remote_source_directory> \; ls |wc -l

Note that the ';' is escaped, else you will only do a cd to remote dir. The ls and wc will run in the local shell.

Hope this helps. Cheers!
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Help with retrieving files via SFTP

I have a process which generates a file and places it on my sftp server Then I connect to the sftp to retrieve the file. However for some reason, I keep getting an incomplete file. These are the steps. 1. Submit a request to my sftp file to start generating a file 2. That file is picked... (7 Replies)
Discussion started by: sidnow
7 Replies

2. Shell Programming and Scripting

Check files and archive the files using sftp

Hi, I have to check the files in another server using sftp to do that, below is the code i am going with #!/bin/bash export SRC_FOLDER=$1 export ARC_FOLDER=$2 HOST=as07u3456 USER=relfag sftp ${USER}@${HOST} <<EOF cd $SRC_FOLDER/DSCOR ls bye EOF echo "done" whatever the files i... (8 Replies)
Discussion started by: ursrami
8 Replies

3. Shell Programming and Scripting

SFTP Multiple files

Hi :), I am new to Unix and Shell Script I have a urgent requirement, where i am new to shell script and Unix my requirement is I have a files in a folder like sales-prod-India-details.txt sales-prod-japan-details.txt sales-prod-china-details.txt My SFTP server has ... (3 Replies)
Discussion started by: spradeep86
3 Replies

4. Shell Programming and Scripting

Renaming multiple files in sftp server in a get files script

Hi, In sftp script to get files, I have to rename all the files which I am picking. Rename command does not work here. Is there any way to do this? I am using #!/bin/ksh For eg: sftp user@host <<EOF cd /path get *.txt rename *.txt *.txt.done ... (7 Replies)
Discussion started by: jhilmil
7 Replies

5. Shell Programming and Scripting

Sftp files between servers

I am writing a shell script to copy sybase related .dump files from one to another aix server and visa versa. Please help me do the following The script does the following: - check directory exists - copy dump files - copy is done for multiple database - checks databases, if one... (11 Replies)
Discussion started by: nmm_dba
11 Replies

6. Shell Programming and Scripting

SFTP files

Request you to delete this post. Thanks (0 Replies)
Discussion started by: vedanta
0 Replies

7. Red Hat

Chroot sftp users, remote sftp login shows wrong timestamp on files

Hello, I have a weird issue, I have RHEL 5.7 running with openssh5.2 where sftpgroup OS group is chroot. I see the difference difference in timestamp on files, when I login via ssh and SFTP, I see four hour difference, is something missing in my configuration. #pwd... (8 Replies)
Discussion started by: bobby320
8 Replies

8. Shell Programming and Scripting

SFTP files from one server to another

Hi, I want to transfer files from 1 server to another server using sftp. Earlier what I use to do is transfer files on the same server using mv command. Pls help. (6 Replies)
Discussion started by: chetancrsp18
6 Replies

9. Shell Programming and Scripting

SFTP files to two servers

Hi, I need to write a unix shell script which sends files to a server1 from my server via sftp. Then it needs to again SFTP files from that server1 to another server2. And finally remove the transferred files in the intermediate server1. Please provide me pointers on how to achieve the same. All... (3 Replies)
Discussion started by: vharsha
3 Replies

10. Shell Programming and Scripting

sftp shell that will validate files

Hi. I've written a shell that will sftp about 5,000 to 10,000 files a day (they are small 200 byte files). Where I'm stuck at is that I need to not only copy those files from the ftp server, I also need to delete the files on the ftp server after they have been ftped BUT before they've been... (0 Replies)
Discussion started by: biglarrrr
0 Replies
Login or Register to Ask a Question