Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
.
google site




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #7 (permalink)  
Old 01-12-2007
srinivasan_85 srinivasan_85 is offline
Registered User
 

Join Date: Jan 2007
Posts: 28
Hope this helps!

Hi,
I am using xargs to do the job! I hope this is wat u expected

ls -la | awk '{print $NF}' | egrep '^\.' | xargs -I {} -t scp {} some_machine:~/destination_folder

~Srini