<?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: file create in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/file-create/m-p/4547085#M370205</link>
    <description>Hi,&lt;BR /&gt;Just a remark,&lt;BR /&gt;&lt;BR /&gt;making thousands of files in the same directory is not very good for perf, it is usually better to hash them to subdirectories</description>
    <pubDate>Wed, 09 Dec 2009 15:32:44 GMT</pubDate>
    <dc:creator>Laurent Menase</dc:creator>
    <dc:date>2009-12-09T15:32:44Z</dc:date>
    <item>
      <title>file create</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-create/m-p/4547082#M370202</link>
      <description>trying to creat a few thousand small files in a directory to test a process. Itried using split but it has a max number of files it can create.&lt;BR /&gt;anyone have a script handy that will create a few thousand small files, like 5k or 1k files?&lt;BR /&gt;or even empty files would probably work.</description>
      <pubDate>Wed, 09 Dec 2009 13:54:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-create/m-p/4547082#M370202</guid>
      <dc:creator>Nobody's Hero</dc:creator>
      <dc:date>2009-12-09T13:54:50Z</dc:date>
    </item>
    <item>
      <title>Re: file create</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-create/m-p/4547083#M370203</link>
      <description>perl -e 'for (1 .. shift) { open X,"&amp;gt;$_.tmp"; print X $_ . 'x'x1000 }'  2000&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;You may want to specify how you would like to name your files.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Cheer,&lt;BR /&gt;Hein.&lt;BR /&gt;</description>
      <pubDate>Wed, 09 Dec 2009 14:01:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-create/m-p/4547083#M370203</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2009-12-09T14:01:47Z</dc:date>
    </item>
    <item>
      <title>Re: file create</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-create/m-p/4547084#M370204</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;# cat ./touchem&lt;BR /&gt;#!/usr/bin/sh&lt;BR /&gt;typeset -i i=0&lt;BR /&gt;while (( $i &amp;lt; 100 ))&lt;BR /&gt;do&lt;BR /&gt;    touch f${i}&lt;BR /&gt;    i=$((i+1))&lt;BR /&gt;done&lt;BR /&gt;&lt;BR /&gt;...change to the directory in which you want to create the files.  Adjust the upper number accordingly.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Wed, 09 Dec 2009 14:05:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-create/m-p/4547084#M370204</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2009-12-09T14:05:39Z</dc:date>
    </item>
    <item>
      <title>Re: file create</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-create/m-p/4547085#M370205</link>
      <description>Hi,&lt;BR /&gt;Just a remark,&lt;BR /&gt;&lt;BR /&gt;making thousands of files in the same directory is not very good for perf, it is usually better to hash them to subdirectories</description>
      <pubDate>Wed, 09 Dec 2009 15:32:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-create/m-p/4547085#M370205</guid>
      <dc:creator>Laurent Menase</dc:creator>
      <dc:date>2009-12-09T15:32:44Z</dc:date>
    </item>
    <item>
      <title>Re: file create</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-create/m-p/4547086#M370206</link>
      <description>wow! 10 years and a day :)&lt;BR /&gt;&lt;BR /&gt;Nobody's Hero&lt;BR /&gt;ITRC member since:    December 09, 1999&lt;BR /&gt;Last contribution date:  December 09, 2009 &lt;BR /&gt;&lt;BR /&gt;&amp;gt;making thousands of files in the same directory is not very good for perf, it is usually better to hash them to subdirectories&lt;BR /&gt;&lt;BR /&gt;ok, run that touchem' script to a dir called "a", then copy it 10x to have separate dirs :)&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 10 Dec 2009 14:49:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-create/m-p/4547086#M370206</guid>
      <dc:creator>Viktor Balogh</dc:creator>
      <dc:date>2009-12-10T14:49:26Z</dc:date>
    </item>
    <item>
      <title>Re: file create</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-create/m-p/4547087#M370207</link>
      <description>Yes Viktor, and I still slog through writing scripts as I don't do it often enough. 10 years of medium expertise and trouble shooting with expert backup from you fine folks on this site.&lt;BR /&gt;&lt;BR /&gt;I applaud you women and gentlemen, willing to share your expertise and help us learn something new each and every day. I can't tell you how much help you all have been to me over the years, especially during emergencies.&lt;BR /&gt;&lt;BR /&gt;THANKS * 110,000</description>
      <pubDate>Thu, 10 Dec 2009 14:54:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-create/m-p/4547087#M370207</guid>
      <dc:creator>Nobody's Hero</dc:creator>
      <dc:date>2009-12-10T14:54:59Z</dc:date>
    </item>
    <item>
      <title>Re: file create</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-create/m-p/4547088#M370208</link>
      <description>OFF: you can use this link:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.yonkis.com/mediaflash/unmillon.htm" target="_blank"&gt;http://www.yonkis.com/mediaflash/unmillon.htm&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;:D (no points for that)</description>
      <pubDate>Thu, 10 Dec 2009 15:41:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-create/m-p/4547088#M370208</guid>
      <dc:creator>Viktor Balogh</dc:creator>
      <dc:date>2009-12-10T15:41:38Z</dc:date>
    </item>
  </channel>
</rss>

