i'm currently downloading a file via ssh with shell scripting

the code I have is

ssh $username@$hostname $commands > data.temp

I would like to have a preview of the filesize or something on data.temp

basically I am getting a dbdump with the $commands var.......

is there any way I can do it?

link|improve this question

54% accept rate
feedback

1 Answer

Try this:

watch ls -l data.temp

and exit with Ctrl-C.

If you don't have watch: (thanks fge for the correction; watch has 2 second delay by default)

while true ; do clear ; ls -l data.temp ; sleep 2 ; done
link|improve this answer
1  
Suggestions for improvements for solution 2: while true ; do clear; ls -l data.temp ; sleep 1; done :) – fge Dec 23 '11 at 11:21
yeah... but how can I add that to my script to execute it too..... as you can see I am using that expression above to se start downloading... but I want in the meanwhile do that only with one script! (this is a instalation script :( ) – Killercode Dec 23 '11 at 11:56
Make your downloading command run as a background task and check for its status periodically. There are ways, but more details are needed: which OS? Which shell? – fge Dec 23 '11 at 12:07
I'm using bash. – Killercode Dec 23 '11 at 12:16
Put this in your script: ssh ... > data.temp & watch ... - the ampersand puts the ssh in the background. Or, if ssh is running right now, open a new Terminal. Or type Ctrl-Z to put ssh in background, then: bg to keep running ssh. Then use watch. – Felix Rabe Dec 23 '11 at 13:15
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.