<?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: ls (is the result in bytes) in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/ls-is-the-result-in-bytes/m-p/4367527#M346906</link>
    <description>OK, Steven, i will read the documentation more carefully...&lt;BR /&gt;&lt;BR /&gt;one question:&lt;BR /&gt;&lt;BR /&gt;i have these files:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;REPORT IN KS:&lt;BR /&gt;$ ls -l |awk '/^d/ {print $NF}'|xargs du -ks&lt;BR /&gt;101637  .&lt;BR /&gt;&lt;BR /&gt;REPORT IN MB:&lt;BR /&gt;$ ls -l |awk '/^d/ {print $NF}'|xargs du -ks|awk '{printf "%6.2f %s\n",$1/1024,$2}'&lt;BR /&gt; 99.25 .&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;if i see the first one, i could think: &lt;BR /&gt;"101637 kb = 101.637 MB"&lt;BR /&gt;but if  see the other instrucction i see: 99.25&lt;BR /&gt;&lt;BR /&gt;so 101.637 is not equal to 99.25&lt;BR /&gt;what is the correct value to know in MB?&lt;BR /&gt;&lt;BR /&gt;Thanks in advance.&lt;BR /&gt;</description>
    <pubDate>Fri, 06 Mar 2009 16:48:01 GMT</pubDate>
    <dc:creator>Manuales</dc:creator>
    <dc:date>2009-03-06T16:48:01Z</dc:date>
    <item>
      <title>ls (is the result in bytes)</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ls-is-the-result-in-bytes/m-p/4367503#M346882</link>
      <description>Hi, &lt;BR /&gt;i would like to know what is the size of the result after i run the command "ls -l"&lt;BR /&gt;&lt;BR /&gt;Example:&lt;BR /&gt;$ ls -lrt prueba&lt;BR /&gt;-rw-rw-r--   1 ftphr      sapsys2         21 Feb 26 12:58 prueba&lt;BR /&gt;&lt;BR /&gt;is "21" in bytes? if so, how can i run ls to get the value in Mb?&lt;BR /&gt;&lt;BR /&gt;please let me know.&lt;BR /&gt;Thanks.&lt;BR /&gt;Dma.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 26 Feb 2009 18:00:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ls-is-the-result-in-bytes/m-p/4367503#M346882</guid>
      <dc:creator>Manuales</dc:creator>
      <dc:date>2009-02-26T18:00:46Z</dc:date>
    </item>
    <item>
      <title>Re: ls (is the result in bytes)</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ls-is-the-result-in-bytes/m-p/4367504#M346883</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;Yes that value "21" has the units of characters.  If you want to convert this to MB, you could do:&lt;BR /&gt;&lt;BR /&gt;# ls -l | awk '{$5=sprintf("%6.2f",$5/1024/1024);print}'&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 26 Feb 2009 18:09:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ls-is-the-result-in-bytes/m-p/4367504#M346883</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2009-02-26T18:09:49Z</dc:date>
    </item>
    <item>
      <title>Re: ls (is the result in bytes)</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ls-is-the-result-in-bytes/m-p/4367505#M346884</link>
      <description>&lt;!--!*#--&gt;&amp;gt;is "21" in bytes?&lt;BR /&gt;&lt;BR /&gt;Of course.&lt;BR /&gt;If you want it in Mb, you will have to write a script:&lt;BR /&gt;ll -rt prueba | awk '&lt;BR /&gt;NF &amp;gt;= 9 {&lt;BR /&gt;   print $1, $2, $3, $4, $5/(1024*1024), $6, $7, $8, $9, $10, $11&lt;BR /&gt;   next&lt;BR /&gt;}&lt;BR /&gt;{&lt;BR /&gt;print $0&lt;BR /&gt;}'&lt;BR /&gt;</description>
      <pubDate>Thu, 26 Feb 2009 18:14:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ls-is-the-result-in-bytes/m-p/4367505#M346884</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2009-02-26T18:14:00Z</dc:date>
    </item>
    <item>
      <title>Re: ls (is the result in bytes)</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ls-is-the-result-in-bytes/m-p/4367506#M346885</link>
      <description>and , what about Kb?  how can i do that? &lt;BR /&gt;only 1 time: 1024?</description>
      <pubDate>Thu, 26 Feb 2009 18:55:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ls-is-the-result-in-bytes/m-p/4367506#M346885</guid>
      <dc:creator>Manuales</dc:creator>
      <dc:date>2009-02-26T18:55:56Z</dc:date>
    </item>
    <item>
      <title>Re: ls (is the result in bytes)</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ls-is-the-result-in-bytes/m-p/4367507#M346886</link>
      <description>Hi (again) Manuales:&lt;BR /&gt;&lt;BR /&gt;&amp;gt; and , what about Kb? how can i do that?&lt;BR /&gt;&lt;BR /&gt;Yes:&lt;BR /&gt;&lt;BR /&gt;# ls -l | awk '{$5=sprintf("%6.2f",$5/1024);print}'&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Thu, 26 Feb 2009 18:59:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ls-is-the-result-in-bytes/m-p/4367507#M346886</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2009-02-26T18:59:24Z</dc:date>
    </item>
    <item>
      <title>Re: ls (is the result in bytes)</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ls-is-the-result-in-bytes/m-p/4367508#M346887</link>
      <description>Hi,&lt;BR /&gt;when i run:&lt;BR /&gt; ls -l | awk '{$5=sprintf("%6.2f",$5);print}'&lt;BR /&gt;&lt;BR /&gt;the result is:&lt;BR /&gt;how can i gent  27.00 ?&lt;BR /&gt;&lt;BR /&gt;total 32     0.00&lt;BR /&gt;-rw-rw-r-- 1 ftphr sapsys2  20.00 Mar 5 16:33 file1&lt;BR /&gt;-rw-rw-r-- 1 ftphr sapsys2   7.00 Mar 5 16:33 file2</description>
      <pubDate>Thu, 05 Mar 2009 21:34:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ls-is-the-result-in-bytes/m-p/4367508#M346887</guid>
      <dc:creator>Manuales</dc:creator>
      <dc:date>2009-03-05T21:34:59Z</dc:date>
    </item>
    <item>
      <title>Re: ls (is the result in bytes)</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ls-is-the-result-in-bytes/m-p/4367509#M346888</link>
      <description>Hi (again):&lt;BR /&gt;&lt;BR /&gt;Yes, we should skip the "total" line at the head of the list:&lt;BR /&gt;&lt;BR /&gt;# ls -l | awk '/^total/ {print;next};{$5=sprintf("%6.2f",$5/1024);print}'&lt;BR /&gt;&lt;BR /&gt;...converts to KB...&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Thu, 05 Mar 2009 21:40:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ls-is-the-result-in-bytes/m-p/4367509#M346888</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2009-03-05T21:40:02Z</dc:date>
    </item>
    <item>
      <title>Re: ls (is the result in bytes)</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ls-is-the-result-in-bytes/m-p/4367510#M346889</link>
      <description>thanks ....&lt;BR /&gt;I have a question, if i run:&lt;BR /&gt;$ ls -lR | awk '{ sum += $5 } END { print sum }'&lt;BR /&gt;&lt;BR /&gt;I got:&lt;BR /&gt;1.26335e+08&lt;BR /&gt;&lt;BR /&gt;if i run:&lt;BR /&gt;$ ls -l | awk '/^total/ {print;next};{$5=sprintf("%6.2f",$5/1024);print}'&lt;BR /&gt;&lt;BR /&gt;I got: total 155152  (KB)&lt;BR /&gt;&lt;BR /&gt;is the same both cases? i mean, the result (numbers)  are different .... how can i explain that?&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 05 Mar 2009 21:43:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ls-is-the-result-in-bytes/m-p/4367510#M346889</guid>
      <dc:creator>Manuales</dc:creator>
      <dc:date>2009-03-05T21:43:42Z</dc:date>
    </item>
    <item>
      <title>Re: ls (is the result in bytes)</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ls-is-the-result-in-bytes/m-p/4367511#M346890</link>
      <description>example one had:&lt;BR /&gt;&lt;BR /&gt; ls -lR | awk '{ sum += $5 } END { print sum }'&lt;BR /&gt;&lt;BR /&gt;example two had:&lt;BR /&gt;&lt;BR /&gt; ls -l | awk '/^total/ {print;next};{$5=sprintf("%6.2f",$5/1024);print}'&lt;BR /&gt;&lt;BR /&gt;the "-R" in example one caused it to list the sizes of all the files in all the subdirectories, while the second didn't have that option.&lt;BR /&gt;&lt;BR /&gt;also notice that the second example got rid of the "total" line, although this should not change the results.&lt;BR /&gt;&lt;BR /&gt;Basically, you appear to have run the test with different sets of data!</description>
      <pubDate>Thu, 05 Mar 2009 21:52:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ls-is-the-result-in-bytes/m-p/4367511#M346890</guid>
      <dc:creator>OldSchool</dc:creator>
      <dc:date>2009-03-05T21:52:12Z</dc:date>
    </item>
    <item>
      <title>Re: ls (is the result in bytes)</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ls-is-the-result-in-bytes/m-p/4367512#M346891</link>
      <description>Note also the following:&lt;BR /&gt;&lt;BR /&gt;example one totals the sizes of all the files in the list, as in:&lt;BR /&gt;&lt;BR /&gt;ls -lR | awk '{ sum += $5 } END { print sum }'&lt;BR /&gt;5912633&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;example two converts / displays each file to KB and displays that in the list:&lt;BR /&gt;&lt;BR /&gt; ls -l | awk '/^total/ {print;next};{$5=sprintf("%6.2f",$5/1024);print}'&lt;BR /&gt;total 668&lt;BR /&gt;-rwxr----- 1 root root   0.00 Feb 23 12:26 abc&lt;BR /&gt;-rw-r--r-- 1 root root   1.73 Dec 26 16:05 add.hosts&lt;BR /&gt;-rw-r--r-- 1 root root   1.72 Dec 26 19:50 anaconda-ks.cfg&lt;BR /&gt;drwxr-xr-x 2 root root   4.00 Feb 25 10:26 c2&lt;BR /&gt;drwx------ 3 root root   4.00 Dec 26 19:57 Desktop&lt;BR /&gt;-rw-r--r-- 1 root root 120.00 Dec 30 14:07 examples.tar&lt;BR /&gt;-rwxr-xr-x 1 root root   0.04 Feb 27 15:18 fsm&lt;BR /&gt;-rw-r--r-- 1 root root   0.10 Mar 2 15:54 fsm1&lt;BR /&gt;-rwxr-xr-x 1 root root   0.13 Mar 2 16:11 fsm1.sh&lt;BR /&gt;-rw-r--r-- 1 root root   0.10 Mar 2 14:45 fsm2&lt;BR /&gt;-rw-r--r-- 1 root root   0.03 Feb 5 15:27 fsma1&lt;BR /&gt;-rw-r--r-- 1 root root   0.52 Feb 5 15:25 fsmawk&lt;BR /&gt;-rwxr-xr-x 1 root root   0.16 Feb 19 16:27 fsm.sh&lt;BR /&gt;-rw-r--r-- 1 root root  46.62 Dec 26 19:50 install.log&lt;BR /&gt;-rw-r--r-- 1 root root   5.10 Dec 26 19:50 install.log.syslog&lt;BR /&gt;drwxr-xr-x 3 root root   4.00 Jan 9 10:34 sudo&lt;BR /&gt;-rw-r--r-- 1 root root 423.72 Dec 26 15:28 tzdata-2008i-1.el2_1.noarch.rpm&lt;BR /&gt;</description>
      <pubDate>Thu, 05 Mar 2009 22:00:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ls-is-the-result-in-bytes/m-p/4367512#M346891</guid>
      <dc:creator>OldSchool</dc:creator>
      <dc:date>2009-03-05T22:00:16Z</dc:date>
    </item>
    <item>
      <title>Re: ls (is the result in bytes)</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ls-is-the-result-in-bytes/m-p/4367513#M346892</link>
      <description>OldSchool, you are completely RIGHT ...&lt;BR /&gt;&lt;BR /&gt;So, why it is different:&lt;BR /&gt;&lt;BR /&gt;$ ls -l | awk '{ sum += $5 } END { print sum }'&lt;BR /&gt;RESULT:  7.94204e+07&lt;BR /&gt;&lt;BR /&gt;$ ls -l | awk '/^total/ {print;next};{$5=sprintf("%6.2f",$5/1024);print}'&lt;BR /&gt;RESULT: total 155152</description>
      <pubDate>Thu, 05 Mar 2009 22:01:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ls-is-the-result-in-bytes/m-p/4367513#M346892</guid>
      <dc:creator>Manuales</dc:creator>
      <dc:date>2009-03-05T22:01:07Z</dc:date>
    </item>
    <item>
      <title>Re: ls (is the result in bytes)</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ls-is-the-result-in-bytes/m-p/4367514#M346893</link>
      <description>Hi Manuales:&lt;BR /&gt;&lt;BR /&gt;You asked:&lt;BR /&gt;&lt;BR /&gt;So, why it is different:&lt;BR /&gt;&lt;BR /&gt;$ ls -l | awk '{ sum += $5 } END { print sum }'&lt;BR /&gt;RESULT: 7.94204e+07&lt;BR /&gt;&lt;BR /&gt;$ ls -l | awk '/^total/ {print;next};{$5=sprintf("%6.2f",$5/1024);print}'&lt;BR /&gt;RESULT: total 155152&lt;BR /&gt;&lt;BR /&gt;...&lt;BR /&gt;&lt;BR /&gt;In the first case we summed *characters*.&lt;BR /&gt;&lt;BR /&gt;In the second case we simply passed through without converion the "total" line in the list head.  The UNITS of this value are 512-character BLOCKS.  Hence, 155152*512 = 79437824 =~ 7.94204e+07&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Thu, 05 Mar 2009 22:10:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ls-is-the-result-in-bytes/m-p/4367514#M346893</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2009-03-05T22:10:17Z</dc:date>
    </item>
    <item>
      <title>Re: ls (is the result in bytes)</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ls-is-the-result-in-bytes/m-p/4367515#M346894</link>
      <description>$ ls -l | awk '/^total/ {print;next};{$5=sprintf("%6.2f",$5/1024);print}'&lt;BR /&gt;RESULT: total 155152&lt;BR /&gt;&lt;BR /&gt;I take it in the above you calculated a total by hand ('cause it sure didn't print it).  &lt;BR /&gt;&lt;BR /&gt;if so, lots of small files could be an issue i suppose, but w/o seeing the directory listing *before* it gets run thru the various awks, its hard to tell</description>
      <pubDate>Thu, 05 Mar 2009 22:15:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ls-is-the-result-in-bytes/m-p/4367515#M346894</guid>
      <dc:creator>OldSchool</dc:creator>
      <dc:date>2009-03-05T22:15:00Z</dc:date>
    </item>
    <item>
      <title>Re: ls (is the result in bytes)</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ls-is-the-result-in-bytes/m-p/4367516#M346895</link>
      <description>so, wha is the best option to get the space used?&lt;BR /&gt;i mean, i have to get a size report of different paths , my boss needs to know how much we are using in KB.&lt;BR /&gt;&lt;BR /&gt;please let me know what option is the best to get above information.&lt;BR /&gt;&lt;BR /&gt;thanks in advance.</description>
      <pubDate>Thu, 05 Mar 2009 22:15:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ls-is-the-result-in-bytes/m-p/4367516#M346895</guid>
      <dc:creator>Manuales</dc:creator>
      <dc:date>2009-03-05T22:15:01Z</dc:date>
    </item>
    <item>
      <title>Re: ls (is the result in bytes)</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ls-is-the-result-in-bytes/m-p/4367517#M346896</link>
      <description>Hi Manuales:&lt;BR /&gt;&lt;BR /&gt;&amp;gt; I mean, i have to get a size report of different paths , my boss needs to know how much we are using in KB.&lt;BR /&gt;&lt;BR /&gt;The 'du' command is designed for this.  You could summarize a path like this:&lt;BR /&gt;&lt;BR /&gt;# du -ks /path&lt;BR /&gt;&lt;BR /&gt;...and then to find the one-level deeper directory usage:&lt;BR /&gt;&lt;BR /&gt;# ls -l /path | awk '/^d/ {print $NF}'|xargs du -ks&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...&lt;BR /&gt;</description>
      <pubDate>Thu, 05 Mar 2009 22:25:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ls-is-the-result-in-bytes/m-p/4367517#M346896</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2009-03-05T22:25:36Z</dc:date>
    </item>
    <item>
      <title>Re: ls (is the result in bytes)</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ls-is-the-result-in-bytes/m-p/4367518#M346897</link>
      <description>&amp;gt;I have to get a size report of different paths, my boss needs to know how much we are using in KB.&lt;BR /&gt;&lt;BR /&gt;You can use "du -kx".&lt;BR /&gt;</description>
      <pubDate>Thu, 05 Mar 2009 22:29:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ls-is-the-result-in-bytes/m-p/4367518#M346897</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2009-03-05T22:29:01Z</dc:date>
    </item>
    <item>
      <title>Re: ls (is the result in bytes)</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ls-is-the-result-in-bytes/m-p/4367519#M346898</link>
      <description>thaks both ..&lt;BR /&gt;now, how can i get the result in:&lt;BR /&gt;bytes&lt;BR /&gt;kbytes&lt;BR /&gt;mbytes  ?&lt;BR /&gt;&lt;BR /&gt;thanks.</description>
      <pubDate>Thu, 05 Mar 2009 22:34:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ls-is-the-result-in-bytes/m-p/4367519#M346898</guid>
      <dc:creator>Manuales</dc:creator>
      <dc:date>2009-03-05T22:34:06Z</dc:date>
    </item>
    <item>
      <title>Re: ls (is the result in bytes)</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ls-is-the-result-in-bytes/m-p/4367520#M346899</link>
      <description>Hi (again) Manuales:&lt;BR /&gt;&lt;BR /&gt;&amp;gt; now, how can i get the result in: bytes kbytes mbytes ?&lt;BR /&gt;&lt;BR /&gt;Using 'du -k' means Kilobytes, so you need to appropriately convert by factors of 1024.  You have quite enough examples to deduce how to do that :-)&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 05 Mar 2009 23:15:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ls-is-the-result-in-bytes/m-p/4367520#M346899</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2009-03-05T23:15:34Z</dc:date>
    </item>
    <item>
      <title>Re: ls (is the result in bytes)</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ls-is-the-result-in-bytes/m-p/4367521#M346900</link>
      <description>tell me please !!!!</description>
      <pubDate>Thu, 05 Mar 2009 23:21:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ls-is-the-result-in-bytes/m-p/4367521#M346900</guid>
      <dc:creator>Manuales</dc:creator>
      <dc:date>2009-03-05T23:21:23Z</dc:date>
    </item>
    <item>
      <title>Re: ls (is the result in bytes)</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ls-is-the-result-in-bytes/m-p/4367522#M346901</link>
      <description>tell me please !!!! today i am very tired to think it ....  pleaseeeeeeeeeeeee</description>
      <pubDate>Thu, 05 Mar 2009 23:21:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ls-is-the-result-in-bytes/m-p/4367522#M346901</guid>
      <dc:creator>Manuales</dc:creator>
      <dc:date>2009-03-05T23:21:50Z</dc:date>
    </item>
  </channel>
</rss>

