<?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 how to awk the ll command  .. ?? in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-awk-the-ll-command/m-p/2533116#M25501</link>
    <description>is there a way to awk the ll command &lt;BR /&gt;and get only the file size, date, time, and filename? Then take this info and append it each time it runs to a .txt file ?&lt;BR /&gt;&lt;BR /&gt;Thanks for your help..&lt;BR /&gt;Richard &lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Fri, 25 May 2001 19:31:09 GMT</pubDate>
    <dc:creator>someone_4</dc:creator>
    <dc:date>2001-05-25T19:31:09Z</dc:date>
    <item>
      <title>how to awk the ll command  .. ??</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-awk-the-ll-command/m-p/2533116#M25501</link>
      <description>is there a way to awk the ll command &lt;BR /&gt;and get only the file size, date, time, and filename? Then take this info and append it each time it runs to a .txt file ?&lt;BR /&gt;&lt;BR /&gt;Thanks for your help..&lt;BR /&gt;Richard &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 25 May 2001 19:31:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-awk-the-ll-command/m-p/2533116#M25501</guid>
      <dc:creator>someone_4</dc:creator>
      <dc:date>2001-05-25T19:31:09Z</dc:date>
    </item>
    <item>
      <title>Re: how to awk the ll command  .. ??</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-awk-the-ll-command/m-p/2533117#M25502</link>
      <description>Try&lt;BR /&gt;&lt;BR /&gt;ll | awk '{print $5,$6,$7,$8,$9}' &amp;gt;&amp;gt;afile.txt</description>
      <pubDate>Fri, 25 May 2001 19:36:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-awk-the-ll-command/m-p/2533117#M25502</guid>
      <dc:creator>Rodney Hills</dc:creator>
      <dc:date>2001-05-25T19:36:06Z</dc:date>
    </item>
    <item>
      <title>Re: how to awk the ll command  .. ??</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-awk-the-ll-command/m-p/2533118#M25503</link>
      <description>awk '{print $X}'&lt;BR /&gt;the fields start at $0, from left to right</description>
      <pubDate>Fri, 25 May 2001 19:37:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-awk-the-ll-command/m-p/2533118#M25503</guid>
      <dc:creator>Kevin Wright</dc:creator>
      <dc:date>2001-05-25T19:37:24Z</dc:date>
    </item>
    <item>
      <title>Re: how to awk the ll command  .. ??</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-awk-the-ll-command/m-p/2533119#M25504</link>
      <description>Hi Richard,&lt;BR /&gt;There are any number of ways to do this, but here's one:&lt;BR /&gt;&lt;BR /&gt;LOGFILE=myfile.txt&lt;BR /&gt;ll | awk '{print $5, $6, $7, $8, $9}' &amp;gt;&amp;gt; $LOGFILE&lt;BR /&gt;&lt;BR /&gt;You might want to modify it so that you read&lt;BR /&gt;the directory as an argument&lt;BR /&gt;&lt;BR /&gt;something like&lt;BR /&gt;while [ $# -ge 1 ]&lt;BR /&gt;  do&lt;BR /&gt;    DIR=$1&lt;BR /&gt;    shift&lt;BR /&gt;    ll ${DIR} | awk -- the rest as above&lt;BR /&gt;  done&lt;BR /&gt;&lt;BR /&gt;Clay&lt;BR /&gt;</description>
      <pubDate>Fri, 25 May 2001 19:41:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-awk-the-ll-command/m-p/2533119#M25504</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2001-05-25T19:41:13Z</dc:date>
    </item>
  </channel>
</rss>

