The UNIX and Linux Forums
>
Top Forums
>
UNIX for Dummies Questions & Answers
Transferring hidden files with scp
.
User Name
Remember Me?
Password
google site
Forums
Register
Blog
Man Pages
Forum Rules
Links
Albums
FAQ
Users
Calendar
Search
Today's Posts
Mark Forums Read
Thread
:
Transferring hidden files with scp
View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
#
7
(
permalink
)
01-12-2007
srinivasan_85
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
srinivasan_85
View Public Profile
Find all posts by srinivasan_85