<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: scp command to exclude  particular directory in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/scp-command-to-exclude-particular-directory/m-p/5238667#M469441</link>
    <description>Ali, you can also use grep similarly to exclude multiple directory:&lt;BR /&gt;&lt;BR /&gt;# scp -r $(ls | grep -v -e dir_to_exclude1 -e dir_to_exclude2 ) trg_host:/trg_dir/&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Hth,&lt;BR /&gt;Raj.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Fri, 07 May 2010 19:24:03 GMT</pubDate>
    <dc:creator>Raj D.</dc:creator>
    <dc:date>2010-05-07T19:24:03Z</dc:date>
    <item>
      <title>scp command to exclude  particular directory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/scp-command-to-exclude-particular-directory/m-p/5238659#M469433</link>
      <description>Hi All,&lt;BR /&gt;&lt;BR /&gt;Please adivce, i have to copy all directories &amp;amp; files under directory to remote server but wanna exclude 1 directory.&lt;BR /&gt;&lt;BR /&gt;kindly confirm the scp command option.&lt;BR /&gt;&lt;BR /&gt;else i am thinking of making 1 server as nfs  &amp;amp; mount the fs &amp;amp; then start copy with cp.&lt;BR /&gt;but cp too doesnt have exclude option .&lt;BR /&gt;&lt;BR /&gt;rsync is having but --exclude doest recognize the PATTERN directory name.&lt;BR /&gt;&lt;BR /&gt;can any confirm the correct command  &amp;amp; syntax.&lt;BR /&gt;for exclude sigle directory....&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 06 May 2010 12:31:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/scp-command-to-exclude-particular-directory/m-p/5238659#M469433</guid>
      <dc:creator>HP-UX_Ali</dc:creator>
      <dc:date>2010-05-06T12:31:14Z</dc:date>
    </item>
    <item>
      <title>Re: scp command to exclude  particular directory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/scp-command-to-exclude-particular-directory/m-p/5238660#M469434</link>
      <description>ALI, &lt;BR /&gt;scp do not have any include exclude option and that is why rsync can be use.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; rsync is having but --exclude doest recognize the PATTERN directory name.&lt;BR /&gt;&lt;BR /&gt;What patern you are trying. To exclude any directory you can use the --exclude option with rsync. &lt;BR /&gt;&lt;BR /&gt;You have to the exclude option with double quote that will match the regex. Also you must put the / in the directory you want to exclude:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Ex:&lt;BR /&gt;&lt;BR /&gt;# rsync   -avz --exclude=sapr1/ --exclude=saparch1/  source_host:/data/ target_host:/data/&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Hth,&lt;BR /&gt;Raj.&lt;BR /&gt;  &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 06 May 2010 13:03:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/scp-command-to-exclude-particular-directory/m-p/5238660#M469434</guid>
      <dc:creator>Raj D.</dc:creator>
      <dc:date>2010-05-06T13:03:42Z</dc:date>
    </item>
    <item>
      <title>Re: scp command to exclude  particular directory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/scp-command-to-exclude-particular-directory/m-p/5238661#M469435</link>
      <description>Also check this out:&lt;BR /&gt;&lt;A href="http://lists.samba.org/archive/rsync/2002-June/002970.html" target="_blank"&gt;http://lists.samba.org/archive/rsync/2002-June/002970.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 06 May 2010 13:09:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/scp-command-to-exclude-particular-directory/m-p/5238661#M469435</guid>
      <dc:creator>Raj D.</dc:creator>
      <dc:date>2010-05-06T13:09:20Z</dc:date>
    </item>
    <item>
      <title>Re: scp command to exclude  particular directory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/scp-command-to-exclude-particular-directory/m-p/5238662#M469436</link>
      <description>Normally one does in this situation is to make a tar of that directory, scp it over, untar it, then you can remove that one  directory one doesn't want. Hope help.</description>
      <pubDate>Thu, 06 May 2010 13:20:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/scp-command-to-exclude-particular-directory/m-p/5238662#M469436</guid>
      <dc:creator>John Guster</dc:creator>
      <dc:date>2010-05-06T13:20:14Z</dc:date>
    </item>
    <item>
      <title>Re: scp command to exclude  particular directory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/scp-command-to-exclude-particular-directory/m-p/5238663#M469437</link>
      <description>&amp;gt;John: make a tar of that directory&lt;BR /&gt;&lt;BR /&gt;Or use pax(1) or gnu tar and exclude that directory when you create the tarfile (or when you extract.)</description>
      <pubDate>Fri, 07 May 2010 06:26:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/scp-command-to-exclude-particular-directory/m-p/5238663#M469437</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2010-05-07T06:26:02Z</dc:date>
    </item>
    <item>
      <title>Re: scp command to exclude  particular directory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/scp-command-to-exclude-particular-directory/m-p/5238664#M469438</link>
      <description>What I do....&lt;BR /&gt;&lt;BR /&gt;I have boxA &lt;BR /&gt;I want to copy over boxA:/opt/stuff to boxB:/mydir/stuff&lt;BR /&gt;I want to exclude subdirectory /opt/stuff/racerX&lt;BR /&gt;I want to exclude any file with the word BLUE in them.&lt;BR /&gt;&lt;BR /&gt;on boxA&lt;BR /&gt;cd /opt&lt;BR /&gt;find ./stuff -print &amp;gt; /tmp/stufflist.txt&lt;BR /&gt;cd /tmp&lt;BR /&gt;edit text file ./stufflist.txt&lt;BR /&gt;remove subdirectory ./stuff/racerX&lt;BR /&gt;remove any lines with BLUE in them&lt;BR /&gt;save the file&lt;BR /&gt;&lt;BR /&gt;Log into box B&lt;BR /&gt;cd to mydir&lt;BR /&gt;Just sit there.&lt;BR /&gt;&lt;BR /&gt;Go back to box A.&lt;BR /&gt;--Now here comes the magic part--&lt;BR /&gt;&lt;BR /&gt;cat ./stufflist.txt | cpio -odumc | /usr/bin/ssh \&lt;BR /&gt;   -2 \&lt;BR /&gt;   mylogin@boxB \&lt;BR /&gt;     "cd /mydir/.&lt;BR /&gt;     /usr/bin/cpio -idumc"&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;BUT! be careful.  I'd start with just 2 or 3 files and directories.&lt;BR /&gt;SMALL ones.  &lt;BR /&gt;Make sure it works.&lt;BR /&gt;Then move to larger things.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Now other guys... This has worked fine for me.  But perhaps there is something wrong? Let me know.&lt;BR /&gt;&lt;BR /&gt;Oh... &lt;BR /&gt;The find command will not follow links unless you tell it to.  And I would NOT tell it to.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 07 May 2010 11:00:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/scp-command-to-exclude-particular-directory/m-p/5238664#M469438</guid>
      <dc:creator>Steve Post</dc:creator>
      <dc:date>2010-05-07T11:00:47Z</dc:date>
    </item>
    <item>
      <title>Re: scp command to exclude  particular directory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/scp-command-to-exclude-particular-directory/m-p/5238665#M469439</link>
      <description>You can use this:&lt;BR /&gt;&lt;BR /&gt;scp -r $(ls | -e /directory_not_to_copy/d) remote:</description>
      <pubDate>Fri, 07 May 2010 19:01:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/scp-command-to-exclude-particular-directory/m-p/5238665#M469439</guid>
      <dc:creator>Tingli</dc:creator>
      <dc:date>2010-05-07T19:01:50Z</dc:date>
    </item>
    <item>
      <title>Re: scp command to exclude  particular directory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/scp-command-to-exclude-particular-directory/m-p/5238666#M469440</link>
      <description>Sorry, I missed something.&lt;BR /&gt;&lt;BR /&gt;scp -r $(ls | sed /directory_not_to_copy/d) remote:</description>
      <pubDate>Fri, 07 May 2010 19:14:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/scp-command-to-exclude-particular-directory/m-p/5238666#M469440</guid>
      <dc:creator>Tingli</dc:creator>
      <dc:date>2010-05-07T19:14:21Z</dc:date>
    </item>
    <item>
      <title>Re: scp command to exclude  particular directory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/scp-command-to-exclude-particular-directory/m-p/5238667#M469441</link>
      <description>Ali, you can also use grep similarly to exclude multiple directory:&lt;BR /&gt;&lt;BR /&gt;# scp -r $(ls | grep -v -e dir_to_exclude1 -e dir_to_exclude2 ) trg_host:/trg_dir/&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Hth,&lt;BR /&gt;Raj.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 07 May 2010 19:24:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/scp-command-to-exclude-particular-directory/m-p/5238667#M469441</guid>
      <dc:creator>Raj D.</dc:creator>
      <dc:date>2010-05-07T19:24:03Z</dc:date>
    </item>
    <item>
      <title>Re: scp command to exclude  particular directory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/scp-command-to-exclude-particular-directory/m-p/5238668#M469442</link>
      <description>So I guess this means you can do this&lt;BR /&gt;&lt;BR /&gt;find /stuff &amp;gt; filelist.txt&lt;BR /&gt;&lt;BR /&gt;vi filelist.txt&lt;BR /&gt;&lt;BR /&gt;scp -r $( cat filelist.txt ) trg_host:/trg_dir/&lt;BR /&gt;</description>
      <pubDate>Fri, 07 May 2010 19:27:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/scp-command-to-exclude-particular-directory/m-p/5238668#M469442</guid>
      <dc:creator>Steve Post</dc:creator>
      <dc:date>2010-05-07T19:27:29Z</dc:date>
    </item>
    <item>
      <title>Re: scp command to exclude  particular directory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/scp-command-to-exclude-particular-directory/m-p/5238669#M469443</link>
      <description>&amp;gt;Steve: find ./stuff -print &amp;gt; /tmp/stufflist.txt&lt;BR /&gt;edit text file ./stufflist.txt&lt;BR /&gt;remove subdirectory ./stuff/racerX&lt;BR /&gt;remove any lines with BLUE in them&lt;BR /&gt;&lt;BR /&gt;You can also use find's ! -name/-path and -name and -prune to eliminate them.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;cat ./stufflist.txt | cpio -odumc | ...&lt;BR /&gt;&amp;gt;scp -r $( cat filelist.txt ) ...&lt;BR /&gt;&lt;BR /&gt;I'd leave out the evil cats:&lt;BR /&gt;cpio -odumc &amp;lt; stufflist.txt | ...&lt;BR /&gt;scp -r $( &amp;lt; filelist.txt ) ...&lt;BR /&gt;&lt;BR /&gt;&amp;gt;be careful. I'd start with just 2 or 3 files and directories. Make sure it works.&lt;BR /&gt;&lt;BR /&gt;Right.</description>
      <pubDate>Fri, 07 May 2010 22:37:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/scp-command-to-exclude-particular-directory/m-p/5238669#M469443</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2010-05-07T22:37:12Z</dc:date>
    </item>
    <item>
      <title>Re: scp command to exclude  particular directory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/scp-command-to-exclude-particular-directory/m-p/5238670#M469444</link>
      <description>Thanks to all of them.........&lt;BR /&gt;&lt;BR /&gt;Raj.D&lt;BR /&gt;&lt;BR /&gt;can i use below syntax..&lt;BR /&gt;&lt;BR /&gt;# scp -pr *  $(ls | grep -v -e dir_to_exclude1 -e dir_to_exclude2 ) trg_host:/trg_dir/&lt;BR /&gt;&lt;BR /&gt;scp all of them except above 2 directories.&lt;BR /&gt;&lt;BR /&gt;Please confirm...&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;</description>
      <pubDate>Sat, 08 May 2010 10:51:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/scp-command-to-exclude-particular-directory/m-p/5238670#M469444</guid>
      <dc:creator>HP-UX_Ali</dc:creator>
      <dc:date>2010-05-08T10:51:24Z</dc:date>
    </item>
    <item>
      <title>Re: scp command to exclude  particular directory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/scp-command-to-exclude-particular-directory/m-p/5238671#M469445</link>
      <description>&lt;!--!*#--&gt;&amp;gt; can i use below syntax..&lt;BR /&gt;&lt;BR /&gt;Probably.  Will it do what you want?  Seems&lt;BR /&gt;unlikely.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; scp -pr * $(ls | [...]&lt;BR /&gt;&lt;BR /&gt;Why "*" _and_ all the ls+grep stuff?&lt;BR /&gt;&lt;BR /&gt;&amp;gt; Please confirm...&lt;BR /&gt;&lt;BR /&gt;What happens when you _try_ it?  (What is my&lt;BR /&gt;opinion worth?  Ask the computer.)&lt;BR /&gt;&lt;BR /&gt;&amp;gt; &amp;gt;be careful. I'd start with just 2 or 3&lt;BR /&gt;&amp;gt; files and directories. Make sure it works.&lt;BR /&gt;&amp;gt; &lt;BR /&gt;&amp;gt; Right.&lt;BR /&gt;&lt;BR /&gt;I'm with them.</description>
      <pubDate>Sat, 08 May 2010 11:32:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/scp-command-to-exclude-particular-directory/m-p/5238671#M469445</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2010-05-08T11:32:53Z</dc:date>
    </item>
    <item>
      <title>Re: scp command to exclude  particular directory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/scp-command-to-exclude-particular-directory/m-p/5238672#M469446</link>
      <description>Ali,&lt;BR /&gt;&lt;BR /&gt;why the * before: as Steven said , thats correct, and test before actual run.&lt;BR /&gt;&lt;BR /&gt;# scp -pr * $(ls | grep -v -e dir_to_exclude1 -e dir_to_exclude2 ) trg_host:/trg_dir    #incorrect!#&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;This is not right  When you specify * before the 'filtered listing' , it will generate the 'complete' list from your current directory.&lt;BR /&gt;Remove the * and you can use it.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Lets see the syntax:&lt;BR /&gt;&lt;BR /&gt;SYNTAX: scp [options]   [user@]host1:]file1                                     [user@]host2:]file2&lt;BR /&gt;&lt;BR /&gt;or to make it simple it is just similar to copy command:&lt;BR /&gt;# scp [options] &lt;SOURCE&gt;  &lt;TARGET&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Here: $(ls | grep -v -e dir_to_exclude1 -e dir_to_exclude2 )  will work as source file listing:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;You can check by executing : &lt;BR /&gt;# echo $(ls | grep -v -e dir_to_exclude1 -e dir_to_exclude2)&lt;BR /&gt;&lt;BR /&gt;- replace the exclude1 and 2 with your actual directory name. You will see the list. And all those scp will copy. Remeber this will not copy the hidden files under current directory. You can do a small scp test from a test directory and then run the actual copy you are intending to copy.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Hth,&lt;BR /&gt;Raj. &lt;BR /&gt;&lt;BR /&gt;&lt;/TARGET&gt;&lt;/SOURCE&gt;</description>
      <pubDate>Sat, 08 May 2010 12:20:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/scp-command-to-exclude-particular-directory/m-p/5238672#M469446</guid>
      <dc:creator>Raj D.</dc:creator>
      <dc:date>2010-05-08T12:20:56Z</dc:date>
    </item>
    <item>
      <title>Re: scp command to exclude  particular directory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/scp-command-to-exclude-particular-directory/m-p/5238673#M469447</link>
      <description>Ali,&lt;BR /&gt;Another way you can achieve the same thing:&lt;BR /&gt;And if you have large number of file/dir to exclude:&lt;BR /&gt;&lt;BR /&gt;1. Generate the scp command list.&lt;BR /&gt;2. Edit with vi &amp;amp; Remove the lines not needed.&lt;BR /&gt;3. save the file, execute the file .&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Here is is example:&lt;BR /&gt;-------------------&lt;BR /&gt;1. Generate the command list:&lt;BR /&gt;&lt;BR /&gt;# ls -l | grep -v total |awk '{print "scp -pr " $9 " adms-desktop:/home/2/ ;printf " NR ":RC='\$\?' "}' &amp;gt; command_list&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;# ls -l | grep -v total |awk '{print "scp -pr " $9 " trg_host:/trg_dir/ ;printf " NR ":RC='\$\?' "}'    &lt;BR /&gt;scp -pr 1 trg_host:/trg_dir/ ;printf 1:RC=$?&lt;BR /&gt;scp -pr abc trg_host:/trg_dir/ ;printf 2:RC=$?&lt;BR /&gt;scp -pr abcd trg_host:/trg_dir/ ;printf 3:RC=$?&lt;BR /&gt;scp -pr abcd1 trg_host:/trg_dir/ ;printf 4:RC=$?&lt;BR /&gt;scp -pr abcd23 trg_host:/trg_dir/ ;printf 5:RC=$?&lt;BR /&gt;scp -pr abcdEE trg_host:/trg_dir/ ;printf 6:RC=$?&lt;BR /&gt;....&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;2. Edit the list: &amp;amp; remove un-wanted:&lt;BR /&gt;# vi command_list&lt;BR /&gt;&lt;BR /&gt;- /search_file_dir  --&amp;gt; and delete the line&lt;BR /&gt;- save.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;3. Excute:&lt;BR /&gt;# chmod +x command_list&lt;BR /&gt;# ./command_list&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;- Limitations: Any file/directory name in the current directory contains white space, it will not copy.&lt;BR /&gt;- Hidden files on current directory will not copy.&lt;BR /&gt;- The output will be on its way as the copy progress with  Line_number:Result Code (RC=0).  0 means successful.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Hth,&lt;BR /&gt;Raj.&lt;BR /&gt; &lt;BR /&gt;</description>
      <pubDate>Sat, 08 May 2010 13:25:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/scp-command-to-exclude-particular-directory/m-p/5238673#M469447</guid>
      <dc:creator>Raj D.</dc:creator>
      <dc:date>2010-05-08T13:25:33Z</dc:date>
    </item>
    <item>
      <title>Re: scp command to exclude  particular directory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/scp-command-to-exclude-particular-directory/m-p/5238674#M469448</link>
      <description>Thanks Raj..&lt;BR /&gt;&lt;BR /&gt;Your solution has worked. i have tried &amp;amp; successfull transferred.&lt;BR /&gt;&lt;BR /&gt;Full marks... ;)&lt;BR /&gt;&lt;BR /&gt;Dear Steven&lt;BR /&gt;i have asked ..&lt;PLS confirm=""&gt; because i was not in office &amp;amp; was no access to boxes.&lt;BR /&gt;&lt;BR /&gt;But thanks for your time &amp;amp; consideration.&lt;BR /&gt;&lt;BR /&gt;regards.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/PLS&gt;</description>
      <pubDate>Sun, 09 May 2010 05:57:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/scp-command-to-exclude-particular-directory/m-p/5238674#M469448</guid>
      <dc:creator>Mohammed.Muneer</dc:creator>
      <dc:date>2010-05-09T05:57:28Z</dc:date>
    </item>
    <item>
      <title>Re: scp command to exclude  particular directory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/scp-command-to-exclude-particular-directory/m-p/5238675#M469449</link>
      <description>Thanks to Raj &amp;amp; Mohammed.&lt;BR /&gt;&lt;BR /&gt;I too have tried &amp;amp; successful. &lt;BR /&gt;&lt;BR /&gt;thanks to all of them for there time &amp;amp; consideration.&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;Ali</description>
      <pubDate>Sun, 09 May 2010 06:04:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/scp-command-to-exclude-particular-directory/m-p/5238675#M469449</guid>
      <dc:creator>HP-UX_Ali</dc:creator>
      <dc:date>2010-05-09T06:04:16Z</dc:date>
    </item>
    <item>
      <title>Re: scp command to exclude  particular directory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/scp-command-to-exclude-particular-directory/m-p/5238676#M469450</link>
      <description>I have found the solutions &amp;amp; hence closing the thread.</description>
      <pubDate>Sun, 09 May 2010 06:08:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/scp-command-to-exclude-particular-directory/m-p/5238676#M469450</guid>
      <dc:creator>HP-UX_Ali</dc:creator>
      <dc:date>2010-05-09T06:08:10Z</dc:date>
    </item>
  </channel>
</rss>

