j
k
j a
j l
On 8/12/05 9:52 AM, James B. Byrne wrote:
I am trying to create a one line command that will: Find all files ending in .conf tar these over ssh to a remote server.
I am trying to create a one line command that will:
How about
tar c $(find / -name *.conf) | ssh host.com "gzip -c > file.tar.gz"
Back to the thread
Back to the list