<?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 directory structure in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/directory-structure/m-p/2631990#M921385</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I need some help on this..&lt;BR /&gt;&lt;BR /&gt;I need to list all the directory trees inside a directory...Is there any command combination to get this... I want to copy the structure to another environment...&lt;BR /&gt;&lt;BR /&gt;thanks in advance..&lt;BR /&gt;&lt;BR /&gt;bernard</description>
    <pubDate>Tue, 18 Dec 2001 05:21:55 GMT</pubDate>
    <dc:creator>Bernard  Bravo</dc:creator>
    <dc:date>2001-12-18T05:21:55Z</dc:date>
    <item>
      <title>directory structure</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/directory-structure/m-p/2631990#M921385</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I need some help on this..&lt;BR /&gt;&lt;BR /&gt;I need to list all the directory trees inside a directory...Is there any command combination to get this... I want to copy the structure to another environment...&lt;BR /&gt;&lt;BR /&gt;thanks in advance..&lt;BR /&gt;&lt;BR /&gt;bernard</description>
      <pubDate>Tue, 18 Dec 2001 05:21:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/directory-structure/m-p/2631990#M921385</guid>
      <dc:creator>Bernard  Bravo</dc:creator>
      <dc:date>2001-12-18T05:21:55Z</dc:date>
    </item>
    <item>
      <title>Re: directory structure</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/directory-structure/m-p/2631991#M921386</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;# find . -type d -print&lt;BR /&gt;&lt;BR /&gt;Hope this helps. Regards.&lt;BR /&gt;&lt;BR /&gt;Steven Sim Kok Leong&lt;BR /&gt;Brainbench MVP for Unix Admin&lt;BR /&gt;&lt;A href="http://www.brainbench.com" target="_blank"&gt;http://www.brainbench.com&lt;/A&gt;</description>
      <pubDate>Tue, 18 Dec 2001 05:29:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/directory-structure/m-p/2631991#M921386</guid>
      <dc:creator>Steven Sim Kok Leong</dc:creator>
      <dc:date>2001-12-18T05:29:59Z</dc:date>
    </item>
    <item>
      <title>Re: directory structure</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/directory-structure/m-p/2631992#M921387</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;You need to change directory to the tree&lt;BR /&gt;that you wish to start.&lt;BR /&gt;&lt;BR /&gt;# find . -type d -print &amp;gt;/tmp/dir.out&lt;BR /&gt;&lt;BR /&gt;HTH&lt;BR /&gt;-Michael</description>
      <pubDate>Tue, 18 Dec 2001 06:03:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/directory-structure/m-p/2631992#M921387</guid>
      <dc:creator>Michael Tully</dc:creator>
      <dc:date>2001-12-18T06:03:07Z</dc:date>
    </item>
    <item>
      <title>Re: directory structure</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/directory-structure/m-p/2631993#M921388</link>
      <description>For copying a whole directory tree to another machine i use:&lt;BR /&gt;&lt;BR /&gt;tar cf - &lt;SOURCE_DIR&gt; | remsh &lt;TARGET_MACHINE&gt; "cd &lt;TARGET_DIR&gt;; tar xvf -"&lt;/TARGET_DIR&gt;&lt;/TARGET_MACHINE&gt;&lt;/SOURCE_DIR&gt;</description>
      <pubDate>Tue, 18 Dec 2001 07:01:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/directory-structure/m-p/2631993#M921388</guid>
      <dc:creator>Hartmut Lang</dc:creator>
      <dc:date>2001-12-18T07:01:51Z</dc:date>
    </item>
    <item>
      <title>Re: directory structure</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/directory-structure/m-p/2631994#M921389</link>
      <description>Hello Bernard,&lt;BR /&gt;&lt;BR /&gt;if it only about copying a directory-tree, why not using "rcp -rp SOURCE TARGET", where SOURCE and TARGET are in the form of "[host:]directory"?&lt;BR /&gt;&lt;BR /&gt;Just my $0.02,&lt;BR /&gt;Wodisch</description>
      <pubDate>Tue, 18 Dec 2001 07:24:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/directory-structure/m-p/2631994#M921389</guid>
      <dc:creator>Wodisch</dc:creator>
      <dc:date>2001-12-18T07:24:39Z</dc:date>
    </item>
    <item>
      <title>Re: directory structure</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/directory-structure/m-p/2631995#M921390</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;If you are interested in copying the directory structure only, and not the files then this may help -&lt;BR /&gt;find &lt;DIR-NAME&gt; -type d | remsh &lt;HOST -l="" user=""&gt; " cd &lt;DIR&gt; ; xargs  mkdir -p $1"&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Suhas&lt;BR /&gt;&lt;/DIR&gt;&lt;/HOST&gt;&lt;/DIR-NAME&gt;</description>
      <pubDate>Tue, 18 Dec 2001 07:28:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/directory-structure/m-p/2631995#M921390</guid>
      <dc:creator>Suhas_3</dc:creator>
      <dc:date>2001-12-18T07:28:28Z</dc:date>
    </item>
    <item>
      <title>Re: directory structure</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/directory-structure/m-p/2631996#M921391</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;A nice routine from JRF :-&lt;BR /&gt;&lt;BR /&gt;# dtree : print a hierarchy tree starting at specified directory                &lt;BR /&gt;# (.default)                                                                    &lt;BR /&gt;                                                                                &lt;BR /&gt;(cd ${1-.};pwd);                                                                &lt;BR /&gt;find ${1-.} -type d -print | sort -f | sed -e "s,^${1-.},," -e "/^$/d" -e "s,[^/&lt;BR /&gt;]*/\([^/]*\)$,\`-------\1," -e "s,[^/]*/,| ,g"                                  &lt;BR /&gt;#                                                                               &lt;BR /&gt;HTH&lt;BR /&gt;&lt;BR /&gt;Paula</description>
      <pubDate>Tue, 18 Dec 2001 10:07:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/directory-structure/m-p/2631996#M921391</guid>
      <dc:creator>Paula J Frazer-Campbell</dc:creator>
      <dc:date>2001-12-18T10:07:39Z</dc:date>
    </item>
  </channel>
</rss>

