<?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: Shell Script required in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-required/m-p/5236843#M676071</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Thanks a lot for guiding me to learn shell scripting. I will follow the same way as you mention in forum.&lt;BR /&gt;&lt;BR /&gt;Soorj- 'Scripting is set of command ' In limited time you will find many o/P with the help of scripting in that way i was mention scripting is better than command.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Dev</description>
    <pubDate>Wed, 28 Apr 2010 03:13:33 GMT</pubDate>
    <dc:creator>DKC</dc:creator>
    <dc:date>2010-04-28T03:13:33Z</dc:date>
    <item>
      <title>Shell Script required</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-required/m-p/5236823#M676042</link>
      <description>Hello Flock,&lt;BR /&gt;&lt;BR /&gt;Anybody can assist me. How we can write a shell script. I don't basic of that and i need a script.1.List all the file along with their permissions in the server.&lt;BR /&gt;&lt;BR /&gt;Thanks for your prompt action.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Dev</description>
      <pubDate>Mon, 26 Apr 2010 04:07:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-required/m-p/5236823#M676042</guid>
      <dc:creator>DKC</dc:creator>
      <dc:date>2010-04-26T04:07:11Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Script required</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-required/m-p/5236824#M676045</link>
      <description>Hi &lt;BR /&gt;&lt;BR /&gt;Why you need a script for that ??&lt;BR /&gt;&lt;BR /&gt;go to /&lt;BR /&gt;&lt;BR /&gt;#pwd&lt;BR /&gt;/&lt;BR /&gt;&lt;BR /&gt;#ls -lR &amp;gt; /list&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;Sooraj</description>
      <pubDate>Mon, 26 Apr 2010 04:13:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-required/m-p/5236824#M676045</guid>
      <dc:creator>SoorajCleris</dc:creator>
      <dc:date>2010-04-26T04:13:22Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Script required</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-required/m-p/5236825#M676046</link>
      <description>Hi Dev:&lt;BR /&gt;&lt;BR /&gt;You could reduce (filter) the recursive output of 'ls -lR' to do:&lt;BR /&gt;&lt;BR /&gt;# ls -lR /root|awk '{if (NF&amp;gt;3) {print $1,$NF} else {print}}'&lt;BR /&gt;&lt;BR /&gt;...which might yield:&lt;BR /&gt;&lt;BR /&gt;&lt;SNIP&gt;&lt;BR /&gt;/root/.cpan:&lt;BR /&gt;total 26160&lt;BR /&gt;-rw-r--r-- FTPstats.yml&lt;BR /&gt;-rw-r--r-- Metadata&lt;BR /&gt;-rw-r--r-- histfile&lt;BR /&gt;drwxr-xr-x sources&lt;BR /&gt;&lt;BR /&gt;/root/.cpan/sources:&lt;BR /&gt;total 16&lt;BR /&gt;drwxr-xr-x authors&lt;BR /&gt;drwxr-xr-x modules&lt;BR /&gt;&lt;BR /&gt;/root/.cpan/sources/authors:&lt;BR /&gt;total 336&lt;BR /&gt;-rw-r--r-- 01mailrc.txt.gz&lt;BR /&gt;&lt;BR /&gt;/root/.cpan/sources/modules:&lt;BR /&gt;total 2064&lt;BR /&gt;-rw-r--r-- 02packages.details.txt.gz&lt;BR /&gt;-rw-r--r-- 03modlist.data.gz&lt;BR /&gt;&lt;BR /&gt;&lt;/SNIP&gt;&lt;BR /&gt;&lt;BR /&gt;Redirect the output to a file as you see fit:&lt;BR /&gt;&lt;BR /&gt;# ls -lR /path|awk '{if (NF&amp;gt;3) {print $1,$NF} else {print}}' &amp;gt; myls.out&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Mon, 26 Apr 2010 16:35:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-required/m-p/5236825#M676046</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2010-04-26T16:35:48Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Script required</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-required/m-p/5236826#M676048</link>
      <description>&lt;!--!*#--&gt;&amp;gt; [...]&lt;BR /&gt;&amp;gt; ...which might yield:&lt;BR /&gt;&amp;gt; [...]&lt;BR /&gt;&lt;BR /&gt;It might, if all your users cooperate, and&lt;BR /&gt;don't create any files with funny names.&lt;BR /&gt;&lt;BR /&gt;dyi # ls -lR fun&lt;BR /&gt;total 48&lt;BR /&gt;-rw-r--r--   1 root       sys              6 Apr 26 14:13 a b c&lt;BR /&gt;-rw-r--r--   1 root       sys              6 Apr 26 14:13 d e f&lt;BR /&gt;-rw-r--r--   1 root       sys              2 Apr 26 14:15 x&lt;BR /&gt;&lt;BR /&gt;dyi # ls -lR fun | awk '{if (NF&amp;gt;3) {print $1,$NF} else {print}}'&lt;BR /&gt;total 48&lt;BR /&gt;-rw-r--r-- c&lt;BR /&gt;-rw-r--r-- f&lt;BR /&gt;-rw-r--r-- x&lt;BR /&gt;&lt;BR /&gt;Everything's complicated, I always say.&lt;BR /&gt;&lt;BR /&gt;"find" tends to have a good idea of&lt;BR /&gt;what/where a file name really is.  The output&lt;BR /&gt;format of "ls -l" is such a mess that trying&lt;BR /&gt;to parse it (in any elementary way) is asking&lt;BR /&gt;for trouble.  (And sometimes you'll get what&lt;BR /&gt;you ask for.)</description>
      <pubDate>Mon, 26 Apr 2010 18:24:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-required/m-p/5236826#M676048</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2010-04-26T18:24:18Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Script required</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-required/m-p/5236827#M676050</link>
      <description>As Cleris asked, &lt;BR /&gt;&lt;BR /&gt;Why Dev, do you need a full listing?&lt;BR /&gt;Did anyone do a chown -R from / directory? &lt;BR /&gt;&lt;BR /&gt;Let us know - then we can think of the best fitting solution.&lt;BR /&gt;&lt;BR /&gt;SNS&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 26 Apr 2010 18:38:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-required/m-p/5236827#M676050</guid>
      <dc:creator>S.N.S</dc:creator>
      <dc:date>2010-04-26T18:38:12Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Script required</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-required/m-p/5236828#M676052</link>
      <description>Hi (again):&lt;BR /&gt;&lt;BR /&gt;&amp;gt; Steven: It might, if all your users cooperate, and don't create any files with funny names.&lt;BR /&gt;&lt;BR /&gt;You are correct of course.  I was offering a simplistic solution under the conditions that "reasonable" file naming had been followed.  Yes, we both know that many users (intentionally or otherwise) are not reasonable or knowledgeable of corner cases.&lt;BR /&gt;&lt;BR /&gt;If I wanted more rigor, I'd do:&lt;BR /&gt;&lt;BR /&gt;# perl -MFile::Find -we 'find(sub{printf "%04o %-s\n",(stat(_))[2]&amp;amp;07777,$File::Find::name if -f $_},".")'&lt;BR /&gt;&lt;BR /&gt;...or, if I'm running Linux:&lt;BR /&gt;&lt;BR /&gt;# find . -type f -printf "%04m %h/%f\n"&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Mon, 26 Apr 2010 19:29:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-required/m-p/5236828#M676052</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2010-04-26T19:29:29Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Script required</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-required/m-p/5236829#M676054</link>
      <description>To Print: File_perm and  #File_names:&lt;BR /&gt;&lt;BR /&gt;# find / -type f -exec ls -l {} \; |awk '{for (i=2;i&amp;lt;9;i++){$i=""};print $0}'&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 26 Apr 2010 20:43:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-required/m-p/5236829#M676054</guid>
      <dc:creator>Raj D.</dc:creator>
      <dc:date>2010-04-26T20:43:52Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Script required</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-required/m-p/5236830#M676055</link>
      <description>Hi ,&lt;BR /&gt;&lt;BR /&gt;Thanks to all of you for provinding Valuable infomation.&lt;BR /&gt;&lt;BR /&gt;As somebody ask why you need this script&lt;BR /&gt;&amp;gt;&amp;gt; As Business requirement. Scripting is manadatory thing, so i want learn also.&lt;BR /&gt;&lt;BR /&gt;Could you please assist me or can you share some document regarding shell scripting I want learn and create some scripting(HP-UX).&lt;BR /&gt;&lt;BR /&gt;I would be thankfull to all if you will be provide some document regarding same.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Dev</description>
      <pubDate>Tue, 27 Apr 2010 04:37:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-required/m-p/5236830#M676055</guid>
      <dc:creator>DKC</dc:creator>
      <dc:date>2010-04-27T04:37:07Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Script required</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-required/m-p/5236831#M676057</link>
      <description>Hi Sooraj,&lt;BR /&gt;&lt;BR /&gt;# ls -LR &amp;gt;/list gives only the listing of file. As i mention in questions I need all files with permission.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Dev</description>
      <pubDate>Tue, 27 Apr 2010 05:37:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-required/m-p/5236831#M676057</guid>
      <dc:creator>DKC</dc:creator>
      <dc:date>2010-04-27T05:37:34Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Script required</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-required/m-p/5236832#M676059</link>
      <description>Hi Devkant, &lt;BR /&gt;&lt;BR /&gt;Listening is also important like reading!!!&lt;BR /&gt;&lt;BR /&gt;I have mentioned -lR ( lowercase l-el and capital R)...&lt;BR /&gt;&lt;BR /&gt;Unix is a case sensitive OS! different switches -small mistakes -  bigger differences !!!&lt;BR /&gt;&lt;BR /&gt;:)&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Sooraj</description>
      <pubDate>Tue, 27 Apr 2010 05:45:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-required/m-p/5236832#M676059</guid>
      <dc:creator>SoorajCleris</dc:creator>
      <dc:date>2010-04-27T05:45:18Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Script required</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-required/m-p/5236833#M676061</link>
      <description>&lt;A href="http://forums11.itrc.hp.com/service/forums/helptips.do?#33" target="_blank"&gt;http://forums11.itrc.hp.com/service/forums/helptips.do?#33&lt;/A&gt;</description>
      <pubDate>Tue, 27 Apr 2010 06:42:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-required/m-p/5236833#M676061</guid>
      <dc:creator>SoorajCleris</dc:creator>
      <dc:date>2010-04-27T06:42:46Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Script required</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-required/m-p/5236834#M676062</link>
      <description>Hi Sooraj,&lt;BR /&gt;&lt;BR /&gt;# ls -lR &amp;gt; /list&lt;BR /&gt;#&lt;BR /&gt; I got O/P only when i have given ls -lR &lt;BR /&gt;&lt;BR /&gt;but its O/P is too big.&lt;BR /&gt;&lt;BR /&gt;Thanks &amp;amp; Regards,&lt;BR /&gt;Dev</description>
      <pubDate>Tue, 27 Apr 2010 08:49:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-required/m-p/5236834#M676062</guid>
      <dc:creator>DKC</dc:creator>
      <dc:date>2010-04-27T08:49:19Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Script required</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-required/m-p/5236835#M676063</link>
      <description>&amp;gt;I got O/P only when I have given ls -lR but its O/P is too big.&lt;BR /&gt;&lt;BR /&gt;What do you want instead?</description>
      <pubDate>Tue, 27 Apr 2010 08:59:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-required/m-p/5236835#M676063</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2010-04-27T08:59:38Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Script required</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-required/m-p/5236836#M676064</link>
      <description>Hi Dennis,&lt;BR /&gt;&lt;BR /&gt;As i am learning scripting and expect that after creating scripting o/p will comes as below requirement.&lt;BR /&gt;&lt;BR /&gt;1.List of the files with permissions 755.&lt;BR /&gt;2. List all the files created or modified 2 days back.&lt;BR /&gt;3.List all the files owned by certain user&lt;BR /&gt;&lt;BR /&gt;Thanks for assisting me.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Dev&lt;BR /&gt;</description>
      <pubDate>Tue, 27 Apr 2010 11:10:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-required/m-p/5236836#M676064</guid>
      <dc:creator>DKC</dc:creator>
      <dc:date>2010-04-27T11:10:30Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Script required</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-required/m-p/5236837#M676065</link>
      <description>Hi (again) Dev:&lt;BR /&gt;&lt;BR /&gt;&amp;gt; 1.List of the files with permissions 755.&lt;BR /&gt;&lt;BR /&gt;# find /path -type f -perm 755&lt;BR /&gt;&lt;BR /&gt;&amp;gt; 2. List all the files created or modified 2 days back.&lt;BR /&gt;&lt;BR /&gt;# find /path -type f -mtime +1&lt;BR /&gt;&lt;BR /&gt;...which yields files older than 48-hours.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; 3.List all the files owned by certain user&lt;BR /&gt;&lt;BR /&gt;# find /patch -type f -user dev&lt;BR /&gt;&lt;BR /&gt;See the manpages for 'find()'.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...&lt;BR /&gt;</description>
      <pubDate>Tue, 27 Apr 2010 11:26:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-required/m-p/5236837#M676065</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2010-04-27T11:26:58Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Script required</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-required/m-p/5236838#M676066</link>
      <description>Hi JRF,&lt;BR /&gt;&lt;BR /&gt;Thanks a lot for your quick response.&lt;BR /&gt;&lt;BR /&gt;Now i can see the O/P but if you have script for that than really its worthfull for me because i am learning scripting.&lt;BR /&gt;&lt;BR /&gt;Scripting is always better than command.&lt;BR /&gt;&lt;BR /&gt;Hope you will share scripting of that if you have.&lt;BR /&gt;&lt;BR /&gt;Reagrds,&lt;BR /&gt;Dev</description>
      <pubDate>Tue, 27 Apr 2010 11:40:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-required/m-p/5236838#M676066</guid>
      <dc:creator>DKC</dc:creator>
      <dc:date>2010-04-27T11:40:56Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Script required</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-required/m-p/5236839#M676067</link>
      <description>Hi Dev,&lt;BR /&gt;&lt;BR /&gt;Scripting doesn't always need to be:&lt;BR /&gt;sh scriptname.sh &lt;BR /&gt;&lt;BR /&gt;JRF's "commands" you have seen, are very much the basis of the complex scripts that are to be written later.&lt;BR /&gt;&lt;BR /&gt;Now, the question here is - did those tools made it easier that the normals commands ls ....Well, you got the answer :-)&lt;BR /&gt;&lt;BR /&gt;This is the start, the base.&lt;BR /&gt;Hard works pays off, eventually - Happy Learning!&lt;BR /&gt;&lt;BR /&gt;HTH&lt;BR /&gt;SNS&lt;BR /&gt;</description>
      <pubDate>Tue, 27 Apr 2010 12:28:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-required/m-p/5236839#M676067</guid>
      <dc:creator>S.N.S</dc:creator>
      <dc:date>2010-04-27T12:28:43Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Script required</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-required/m-p/5236840#M676068</link>
      <description>Devkant,&lt;BR /&gt;&lt;BR /&gt;Hope all above solutions  answers your question.&lt;BR /&gt;&lt;BR /&gt;However to learn shell scripting you have to spend some time dedicatedly:&lt;BR /&gt;&lt;BR /&gt;- get the book/documentation.&lt;BR /&gt;- get the system and unix command prmpt ready.&lt;BR /&gt;- read theory. &lt;BR /&gt;- write small script and practice.&lt;BR /&gt;- for any doubt question 1. google it or , ask for help in the forum with examples.&lt;BR /&gt;- If you are very new , it is suggested to spend 4 to 8 weeks learning the prgramming and flow control, looping , condition , string operation ,regular expressions etc. And you will be good soon..&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Finally check out few documents here: &lt;BR /&gt;&lt;BR /&gt;#--------------------------------------&lt;BR /&gt;1. Unix Shell scripting Tutorial:&lt;BR /&gt;&lt;A href="http://supportweb.cs.bham.ac.uk/documentation/tutorials/docsystem/build/tutorials/unixscripting/unixscripting.html" target="_blank"&gt;http://supportweb.cs.bham.ac.uk/documentation/tutorials/docsystem/build/tutorials/unixscripting/unixscripting.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;2. The Bourne Shell:&lt;BR /&gt;&lt;A href="http://www.grymoire.com/Unix/Sh.html" target="_blank"&gt;http://www.grymoire.com/Unix/Sh.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;3. Linux Shell Scripting Tutorial v1.05r3 ( A Beginner's handbook ):&lt;BR /&gt;&lt;A href="http://www.freeos.com/guides/lsst/" target="_blank"&gt;http://www.freeos.com/guides/lsst/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;#-----------------------------------------&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Good Luck and Cheers,&lt;BR /&gt;Raj.</description>
      <pubDate>Tue, 27 Apr 2010 12:51:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-required/m-p/5236840#M676068</guid>
      <dc:creator>Raj D.</dc:creator>
      <dc:date>2010-04-27T12:51:38Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Script required</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-required/m-p/5236841#M676069</link>
      <description>Devkant,&lt;BR /&gt;&lt;BR /&gt;Also check this out:&lt;BR /&gt;UNIX shell scripting with ksh/bash::&lt;BR /&gt;####################################&lt;BR /&gt;The goals of this class are to enable you to:&lt;BR /&gt;Learn what kinds of problems are suited to shell scripts &lt;BR /&gt;Review the most commonly used Unix commands that are useful in shell scripts. &lt;BR /&gt;Write simple shell scripts using the Bourne, Korn or Bash shells&lt;BR /&gt;-------------------&lt;BR /&gt;&lt;BR /&gt;very good ,and with examples: &lt;BR /&gt;Started with basic script like:&lt;BR /&gt;&lt;BR /&gt;1: #!/bin/sh&lt;BR /&gt;   2: date&lt;BR /&gt;   3: pwd&lt;BR /&gt;   4: du -k&lt;BR /&gt;################################&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;Link:&lt;BR /&gt;&lt;A href="http://www.dartmouth.edu/~rc/classes/ksh/print_pages.shtml" target="_blank"&gt;http://www.dartmouth.edu/~rc/classes/ksh/print_pages.shtml&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Good Luck,&lt;BR /&gt;Raj.&lt;BR /&gt;</description>
      <pubDate>Tue, 27 Apr 2010 13:03:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-required/m-p/5236841#M676069</guid>
      <dc:creator>Raj D.</dc:creator>
      <dc:date>2010-04-27T13:03:12Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Script required</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-required/m-p/5236842#M676070</link>
      <description>Hi Dev,&lt;BR /&gt;&lt;BR /&gt;===&amp;gt; Scripting is always better than command. &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I wonder how you can have script with out command!!!!!&lt;BR /&gt;&lt;BR /&gt;To meet your requirement to find out all those specific files , only one single line command is required.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Sooraj</description>
      <pubDate>Tue, 27 Apr 2010 15:35:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-required/m-p/5236842#M676070</guid>
      <dc:creator>SoorajCleris</dc:creator>
      <dc:date>2010-04-27T15:35:09Z</dc:date>
    </item>
  </channel>
</rss>

