<?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: Help on mkdir in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/help-on-mkdir/m-p/4944626#M412440</link>
    <description>Dear Mohd,&lt;BR /&gt;&lt;BR /&gt;the -p option is required only when the parent directory is not present. ( In our case the directoryA).&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Tue, 06 Dec 2005 01:58:29 GMT</pubDate>
    <dc:creator>Sivakumar TS</dc:creator>
    <dc:date>2005-12-06T01:58:29Z</dc:date>
    <item>
      <title>Help on mkdir</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-on-mkdir/m-p/4944622#M412436</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I would like to know if i can do a mkdir via script eg as follows:&lt;BR /&gt;&lt;BR /&gt;1) Do a mkdir &lt;DIRECTORY&gt; with current time attached to it in directory A - /directoryA/test1300 (1300 is the time)&lt;BR /&gt;&lt;BR /&gt;Tks&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;&lt;BR /&gt;Mok&lt;/DIRECTORY&gt;</description>
      <pubDate>Tue, 06 Dec 2005 00:08:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-on-mkdir/m-p/4944622#M412436</guid>
      <dc:creator>Mohd Mohtar</dc:creator>
      <dc:date>2005-12-06T00:08:40Z</dc:date>
    </item>
    <item>
      <title>Re: Help on mkdir</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-on-mkdir/m-p/4944623#M412437</link>
      <description>Is 1300 denoting hour and minute?&lt;BR /&gt;&lt;BR /&gt;Then,&lt;BR /&gt;&lt;BR /&gt;# mkdir /directoryA/test$(date +'%H%M')&lt;BR /&gt;&lt;BR /&gt;If it is minute and second then,&lt;BR /&gt;&lt;BR /&gt;# mkdir /directoryA/test$(date +'%M%S') &lt;BR /&gt;&lt;BR /&gt;If you want to have hour minute and second then,&lt;BR /&gt;&lt;BR /&gt;# mkdir /directoryA/test$(date +'%H%M%S') &lt;BR /&gt;&lt;BR /&gt;hth.</description>
      <pubDate>Tue, 06 Dec 2005 00:35:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-on-mkdir/m-p/4944623#M412437</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2005-12-06T00:35:14Z</dc:date>
    </item>
    <item>
      <title>Re: Help on mkdir</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-on-mkdir/m-p/4944624#M412438</link>
      <description>You can go with format like &lt;DIRECTORY prefix=""&gt;_&lt;DATE&gt;_&lt;TIME&gt; as,&lt;BR /&gt;&lt;BR /&gt;# mkdir /directoryA/test_`date +'%d%m%y_%X'`&lt;BR /&gt;&lt;BR /&gt;hth.&lt;/TIME&gt;&lt;/DATE&gt;&lt;/DIRECTORY&gt;</description>
      <pubDate>Tue, 06 Dec 2005 00:39:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-on-mkdir/m-p/4944624#M412438</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2005-12-06T00:39:40Z</dc:date>
    </item>
    <item>
      <title>Re: Help on mkdir</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-on-mkdir/m-p/4944625#M412439</link>
      <description>hi mok,&lt;BR /&gt;&lt;BR /&gt;try this:&lt;BR /&gt;&lt;BR /&gt;# mkdir -p /directory/A/test`date +'%H%M'`&lt;BR /&gt;&lt;BR /&gt;regards.</description>
      <pubDate>Tue, 06 Dec 2005 01:43:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-on-mkdir/m-p/4944625#M412439</guid>
      <dc:creator>Joseph Loo</dc:creator>
      <dc:date>2005-12-06T01:43:02Z</dc:date>
    </item>
    <item>
      <title>Re: Help on mkdir</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-on-mkdir/m-p/4944626#M412440</link>
      <description>Dear Mohd,&lt;BR /&gt;&lt;BR /&gt;the -p option is required only when the parent directory is not present. ( In our case the directoryA).&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 06 Dec 2005 01:58:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-on-mkdir/m-p/4944626#M412440</guid>
      <dc:creator>Sivakumar TS</dc:creator>
      <dc:date>2005-12-06T01:58:29Z</dc:date>
    </item>
    <item>
      <title>Re: Help on mkdir</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-on-mkdir/m-p/4944627#M412441</link>
      <description>Hi Mok,&lt;BR /&gt;mkdir /directoryA/test$(date +%H%M)&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Art</description>
      <pubDate>Tue, 06 Dec 2005 04:28:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-on-mkdir/m-p/4944627#M412441</guid>
      <dc:creator>Arturo Galbiati</dc:creator>
      <dc:date>2005-12-06T04:28:05Z</dc:date>
    </item>
    <item>
      <title>Re: Help on mkdir</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-on-mkdir/m-p/4944628#M412442</link>
      <description>Hello Mohd,&lt;BR /&gt;&lt;BR /&gt;you asked;&lt;BR /&gt;1) Do a mkdir &lt;DIRECTORY&gt; with current time attached to it in directory A - /directoryA/test1300 (1300 is the time)&lt;BR /&gt;&lt;BR /&gt;then solution would be;&lt;BR /&gt;mkdir /directory/A/test`date +'%H%M'`&lt;BR /&gt;&lt;BR /&gt;Good Luck,&lt;/DIRECTORY&gt;</description>
      <pubDate>Tue, 06 Dec 2005 07:37:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-on-mkdir/m-p/4944628#M412442</guid>
      <dc:creator>Cem Tugrul</dc:creator>
      <dc:date>2005-12-06T07:37:28Z</dc:date>
    </item>
    <item>
      <title>Re: Help on mkdir</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-on-mkdir/m-p/4944629#M412443</link>
      <description>Hi All, &lt;BR /&gt;&lt;BR /&gt;Thanks for reply.It works for me.&lt;BR /&gt;&lt;BR /&gt;Thanks again.</description>
      <pubDate>Tue, 06 Dec 2005 07:45:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-on-mkdir/m-p/4944629#M412443</guid>
      <dc:creator>Mohd Mohtar</dc:creator>
      <dc:date>2005-12-06T07:45:32Z</dc:date>
    </item>
    <item>
      <title>Re: Help on mkdir</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-on-mkdir/m-p/4944630#M412444</link>
      <description>Problem solved.</description>
      <pubDate>Tue, 06 Dec 2005 07:46:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-on-mkdir/m-p/4944630#M412444</guid>
      <dc:creator>Mohd Mohtar</dc:creator>
      <dc:date>2005-12-06T07:46:56Z</dc:date>
    </item>
  </channel>
</rss>

