I have some n number of files in a directory on my unix system. Is there a way to write a shellscript that will transfer all those files via scp to a specified remote system
The command scp can be used like a traditional UNIX cp. SO if you do :
scp
cp
scp -r myDirectory/ mylogin@host:TargetDirectory
will work