<?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: script for /etc/password in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/script-for-etc-password/m-p/3194763#M165409</link>
    <description>While? With Uppercase "W"? If so, change it to lowercase.&lt;BR /&gt;&lt;BR /&gt;-Sri&lt;BR /&gt;&lt;BR /&gt;PS: I think I have enough points already. No more points please.&lt;BR /&gt;</description>
    <pubDate>Wed, 18 Feb 2004 17:13:48 GMT</pubDate>
    <dc:creator>Sridhar Bhaskarla</dc:creator>
    <dc:date>2004-02-18T17:13:48Z</dc:date>
    <item>
      <title>script for /etc/password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-for-etc-password/m-p/3194745#M165391</link>
      <description>Hi all,&lt;BR /&gt;&lt;BR /&gt;I am new at scripting and need help??&lt;BR /&gt;I need to modify /etc/password file and compare the username to the username in a flat file if it finds it then replace the comments field in /etc/pasword and populated from a flat file with this string Ex. "C-137h 897 Abu Sassi (HP)".&lt;BR /&gt;&lt;BR /&gt;Thanks for your help in Advance</description>
      <pubDate>Tue, 17 Feb 2004 17:27:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-for-etc-password/m-p/3194745#M165391</guid>
      <dc:creator>A Sassi</dc:creator>
      <dc:date>2004-02-17T17:27:26Z</dc:date>
    </item>
    <item>
      <title>Re: script for /etc/password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-for-etc-password/m-p/3194746#M165392</link>
      <description>I would think something like this, using the chfn command would work:&lt;BR /&gt;&lt;BR /&gt;#!/bin/sh&lt;BR /&gt;for name in $(cat mynamefile); do&lt;BR /&gt;grep $name /etc/passwd &amp;gt;/dev/null 2&amp;gt;&amp;amp;1&lt;BR /&gt;if [ $? ]; then&lt;BR /&gt;      echo "Modifying $name"&lt;BR /&gt;      /usr/bin/chfn $user &amp;gt;/dev/null 2&amp;gt;&amp;amp;1 &amp;lt;&amp;lt;-!&lt;BR /&gt;    $name&lt;BR /&gt;    C-137h 897 Abu Sassi (HP)&lt;BR /&gt;    none&lt;BR /&gt;    none&lt;BR /&gt;    !&lt;BR /&gt;fi&lt;BR /&gt;</description>
      <pubDate>Tue, 17 Feb 2004 17:36:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-for-etc-password/m-p/3194746#M165392</guid>
      <dc:creator>James A. Donovan</dc:creator>
      <dc:date>2004-02-17T17:36:02Z</dc:date>
    </item>
    <item>
      <title>Re: script for /etc/password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-for-etc-password/m-p/3194747#M165393</link>
      <description>Hi Jim&lt;BR /&gt;Thanks for the script. I am still not clear on the text string. I don't want to enter the strings manually; I need the script to pull the info from the flat file. I also not sure if the $user defined in your script.&lt;BR /&gt;&lt;BR /&gt;Thanks for your response&lt;BR /&gt;Abu</description>
      <pubDate>Wed, 18 Feb 2004 11:13:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-for-etc-password/m-p/3194747#M165393</guid>
      <dc:creator>A Sassi</dc:creator>
      <dc:date>2004-02-18T11:13:17Z</dc:date>
    </item>
    <item>
      <title>Re: script for /etc/password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-for-etc-password/m-p/3194748#M165394</link>
      <description>Sorry, $user is a typo..meant to put $name there...&lt;BR /&gt;&lt;BR /&gt;With the script I posted, you wouldn't be entering anything manually.  What does your flat file look like?&lt;BR /&gt;&lt;BR /&gt;e.g.&lt;BR /&gt;&lt;BR /&gt;user1:some comments about user1&lt;BR /&gt;user2:some comments about user2&lt;BR /&gt;&lt;BR /&gt;then the script would look like....&lt;BR /&gt;&lt;BR /&gt;#!/bin/sh&lt;BR /&gt;for LINE in $(cat mynamefile); do&lt;BR /&gt;name=$(echo $LINE|awk -F":" '{print $1}')&lt;BR /&gt;comment=$(echo $LINE|awk -F":" '{print $2}')&lt;BR /&gt;grep $name /etc/passwd &amp;gt;/dev/null 2&amp;gt;&amp;amp;1&lt;BR /&gt;if [ $? ]; then&lt;BR /&gt;echo "Modifying $name"&lt;BR /&gt;/usr/bin/chfn $name &amp;gt;/dev/null 2&amp;gt;&amp;amp;1 &amp;lt;&amp;lt;-!&lt;BR /&gt;$comment&lt;BR /&gt;none&lt;BR /&gt;none&lt;BR /&gt;none&lt;BR /&gt;!&lt;BR /&gt;fi</description>
      <pubDate>Wed, 18 Feb 2004 11:33:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-for-etc-password/m-p/3194748#M165394</guid>
      <dc:creator>James A. Donovan</dc:creator>
      <dc:date>2004-02-18T11:33:13Z</dc:date>
    </item>
    <item>
      <title>Re: script for /etc/password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-for-etc-password/m-p/3194749#M165395</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I thought my post was missing as it happened quite a few times with this site. Looks like you have a duplicate thread here where you can see my response.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=450853" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=450853&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;-Sri</description>
      <pubDate>Wed, 18 Feb 2004 11:36:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-for-etc-password/m-p/3194749#M165395</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2004-02-18T11:36:54Z</dc:date>
    </item>
    <item>
      <title>Re: script for /etc/password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-for-etc-password/m-p/3194750#M165396</link>
      <description>one more change...for loop needs to change to a while loop...&lt;BR /&gt;&lt;BR /&gt;for LINE in $(cat mynamefile);do&lt;BR /&gt;&lt;BR /&gt;becomes&lt;BR /&gt;&lt;BR /&gt;cat mynamefile|while read LINE; do</description>
      <pubDate>Wed, 18 Feb 2004 11:45:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-for-etc-password/m-p/3194750#M165396</guid>
      <dc:creator>James A. Donovan</dc:creator>
      <dc:date>2004-02-18T11:45:23Z</dc:date>
    </item>
    <item>
      <title>Re: script for /etc/password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-for-etc-password/m-p/3194751#M165397</link>
      <description>Are you just changing one field in the file or the entire record?? &lt;BR /&gt;</description>
      <pubDate>Wed, 18 Feb 2004 11:53:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-for-etc-password/m-p/3194751#M165397</guid>
      <dc:creator>rmueller58</dc:creator>
      <dc:date>2004-02-18T11:53:50Z</dc:date>
    </item>
    <item>
      <title>Re: script for /etc/password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-for-etc-password/m-p/3194752#M165398</link>
      <description>Are you appending the entire comment field? &lt;BR /&gt;&lt;BR /&gt;I'd use an perl or sed and awk script to parse out the fields and redefine the text.. Make sure no one is in SAM changing a user at  the time or you'll be jacked.. &lt;BR /&gt;&lt;BR /&gt;created a backup of your /etc/passwd file. &lt;BR /&gt;&lt;BR /&gt;If you Want to read STDIN into the comment field via interaction I'd do something like this.. &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I do like SRI's version.. I will have to try it myself. I do something a bit different on a user by user basis..&lt;BR /&gt;&lt;BR /&gt;echo "Enter User Name:"&lt;BR /&gt;read username&lt;BR /&gt;grep $username /etc/passwd&lt;BR /&gt;export comment `grep $username /etc/passwd |awk -F: '{print $5}'`&lt;BR /&gt;echo "Enter New Comment information:"&lt;BR /&gt;read comment2&lt;BR /&gt;perl -p -i -e s/$comment/$comment2/g /etc/passwd&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 18 Feb 2004 12:36:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-for-etc-password/m-p/3194752#M165398</guid>
      <dc:creator>rmueller58</dc:creator>
      <dc:date>2004-02-18T12:36:31Z</dc:date>
    </item>
    <item>
      <title>Re: script for /etc/password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-for-etc-password/m-p/3194753#M165399</link>
      <description>I applogies, I did not mention that the script is used on Solaris system. The chfn command only in HPUX. Tried man on Solaris but did not work.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 18 Feb 2004 12:54:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-for-etc-password/m-p/3194753#M165399</guid>
      <dc:creator>A Sassi</dc:creator>
      <dc:date>2004-02-18T12:54:17Z</dc:date>
    </item>
    <item>
      <title>Re: script for /etc/password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-for-etc-password/m-p/3194754#M165400</link>
      <description>Hmmm. This is HP's forums and by default we assume that you are running it on HP-UX server. &lt;BR /&gt;&lt;BR /&gt;On solaris, look at 'passmgmt' man page for more information. I believe you may be interested in "-c" option. But some solaris gurus here can confirm it.&lt;BR /&gt;&lt;BR /&gt;-Sri&lt;BR /&gt;</description>
      <pubDate>Wed, 18 Feb 2004 13:09:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-for-etc-password/m-p/3194754#M165400</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2004-02-18T13:09:08Z</dc:date>
    </item>
    <item>
      <title>Re: script for /etc/password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-for-etc-password/m-p/3194755#M165401</link>
      <description>Hi Jim,&lt;BR /&gt;&lt;BR /&gt;Thanks a lot for the script I am close to getting this working.&lt;BR /&gt;Here is the script with a little changes. &lt;BR /&gt;&lt;BR /&gt;Name of the Flat file is infile and looks like that &lt;BR /&gt;&lt;BR /&gt;test: â  comment comment&lt;BR /&gt;test2: â  comment comment&lt;BR /&gt;test3â ¦â ¦&lt;BR /&gt;&lt;BR /&gt;Name of the script file is idmod2:&lt;BR /&gt;!/bin/sh&lt;BR /&gt;`cat /export/home/infile`|while read LINE;do&lt;BR /&gt;name=`echo $LINE|awk -F":"'{print $1}'`&lt;BR /&gt;GECOS=`echo $LINE|awk -F":"'{print $2}'`&lt;BR /&gt;&lt;BR /&gt;grep $name /etc/passwd &amp;gt;/dev/null 2&amp;gt;&amp;amp;1&lt;BR /&gt;if [ $? ];then&lt;BR /&gt;echo "Modifying $name"&lt;BR /&gt;usermod -c $name &amp;gt;/dev/null 2&amp;gt;&amp;amp;1 &amp;lt;&amp;lt;-!&lt;BR /&gt;$GECOS&lt;BR /&gt;none&lt;BR /&gt;none&lt;BR /&gt;none&lt;BR /&gt;!&lt;BR /&gt;fi&lt;BR /&gt;done&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;When I compile it, I get this error:&lt;BR /&gt;./idmod2 : test : â  comment : not found&lt;BR /&gt;&lt;BR /&gt;It looks that the script is working ok but there is a problem I canâ  t but my hand</description>
      <pubDate>Wed, 18 Feb 2004 15:15:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-for-etc-password/m-p/3194755#M165401</guid>
      <dc:creator>A Sassi</dc:creator>
      <dc:date>2004-02-18T15:15:53Z</dc:date>
    </item>
    <item>
      <title>Re: script for /etc/password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-for-etc-password/m-p/3194756#M165402</link>
      <description>Sorry the text is not clear&lt;BR /&gt;&lt;BR /&gt;test: "comment comment&lt;BR /&gt;test2: "comment comment&lt;BR /&gt;&lt;BR /&gt;also the error is&lt;BR /&gt;&lt;BR /&gt;./idmod2 : test : "comment : not found&lt;BR /&gt;&lt;BR /&gt;I hope this text will show up ok&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;</description>
      <pubDate>Wed, 18 Feb 2004 15:20:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-for-etc-password/m-p/3194756#M165402</guid>
      <dc:creator>A Sassi</dc:creator>
      <dc:date>2004-02-18T15:20:36Z</dc:date>
    </item>
    <item>
      <title>Re: script for /etc/password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-for-etc-password/m-p/3194757#M165403</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;The script may not work completely due to following reasons.&lt;BR /&gt;&lt;BR /&gt;1. If the /etc/passwd has users like user11, user100 and if your flat file has user1, then "grep $user /etc/passwd" is going to fail. So, you would want to put&lt;BR /&gt;&lt;BR /&gt;grep -q "^${user}:" /etc/passwd&lt;BR /&gt;&lt;BR /&gt;2. You will need to test $? against 0. You can eliminate &amp;gt; /dev/null 2&amp;gt;&amp;amp;1 with grep -q&lt;BR /&gt;&lt;BR /&gt;grep -q "^${user}:" /etc/passwd&lt;BR /&gt;if [ $? = 0 ]&lt;BR /&gt;then&lt;BR /&gt;..&lt;BR /&gt;&lt;BR /&gt;Look at my other script and instead of chfn, try your usermod command. A side note, 'usermod' will not work if the user is active atleast on HP systems. See if passmgmt works for you.&lt;BR /&gt;&lt;BR /&gt;-Sri&lt;BR /&gt;</description>
      <pubDate>Wed, 18 Feb 2004 15:23:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-for-etc-password/m-p/3194757#M165403</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2004-02-18T15:23:10Z</dc:date>
    </item>
    <item>
      <title>Re: script for /etc/password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-for-etc-password/m-p/3194758#M165404</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;The end quote " is missing. You don't need to have it&lt;BR /&gt;&lt;BR /&gt;user1: some comments&lt;BR /&gt;user2: some comments&lt;BR /&gt;&lt;BR /&gt;is enough. &lt;BR /&gt;&lt;BR /&gt;-Sri</description>
      <pubDate>Wed, 18 Feb 2004 15:29:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-for-etc-password/m-p/3194758#M165404</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2004-02-18T15:29:03Z</dc:date>
    </item>
    <item>
      <title>Re: script for /etc/password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-for-etc-password/m-p/3194759#M165405</link>
      <description>On Linux you can use usermod &lt;BR /&gt;&lt;BR /&gt;the syntax is&lt;BR /&gt;&lt;BR /&gt;usermod -c "NEW COMMENT" username &lt;BR /&gt;&lt;BR /&gt;as is &lt;BR /&gt;&lt;BR /&gt;usermod -c "Joe Blow" jblow &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 18 Feb 2004 16:10:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-for-etc-password/m-p/3194759#M165405</guid>
      <dc:creator>rmueller58</dc:creator>
      <dc:date>2004-02-18T16:10:10Z</dc:date>
    </item>
    <item>
      <title>Re: script for /etc/password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-for-etc-password/m-p/3194760#M165406</link>
      <description>#!/usr/bin/ksh&lt;BR /&gt;PASSWD=/etc/passwd&lt;BR /&gt;MYFILE=/export/home/infile&lt;BR /&gt;&lt;BR /&gt;While read LINE&lt;BR /&gt;do&lt;BR /&gt;USER=$(echo $LINE|awk '{FS=":";print $1}')&lt;BR /&gt;GECOS=$(echo $LINE|awk '{FS=":";print $2}')&lt;BR /&gt;&lt;BR /&gt;printf "%-20s""Doing for $USER"&lt;BR /&gt;grep -q "^${USER}:"$PASSWD&lt;BR /&gt;if [ $? = 0 ]&lt;BR /&gt;then&lt;BR /&gt;usermod -c $USER &amp;lt;&lt;EOF&gt; /dev/null 2&amp;gt;&amp;amp;1&lt;BR /&gt;none&lt;BR /&gt;none&lt;BR /&gt;none&lt;BR /&gt;$GECOS&lt;BR /&gt;EOF&lt;BR /&gt;&lt;BR /&gt;Print "- Done\n"&lt;BR /&gt;&lt;BR /&gt;else&lt;BR /&gt;&lt;BR /&gt;printf "-N/A\n"&lt;BR /&gt;fi&lt;BR /&gt;&lt;BR /&gt;done &amp;lt; $MYFILE&lt;BR /&gt;&lt;BR /&gt;This is your script I ran it against the infile and I got errors. I am not sure what is the problem with those 2 lines.&lt;BR /&gt;&lt;BR /&gt;# ./idmod3&lt;BR /&gt;./idmod3[5]: While:  not found&lt;BR /&gt;./idmod3[6]: syntax error at line 7 : `do' unexpected&lt;BR /&gt;#&lt;/EOF&gt;</description>
      <pubDate>Wed, 18 Feb 2004 17:11:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-for-etc-password/m-p/3194760#M165406</guid>
      <dc:creator>A Sassi</dc:creator>
      <dc:date>2004-02-18T17:11:02Z</dc:date>
    </item>
    <item>
      <title>Re: script for /etc/password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-for-etc-password/m-p/3194761#M165407</link>
      <description>By the way SRI. I tried your suggestions on Jim's Script but still getting the error.&lt;BR /&gt;&lt;BR /&gt;# ./idmod2&lt;BR /&gt;./idmod2: test3:comment: not found&lt;BR /&gt;#&lt;BR /&gt;&lt;BR /&gt;Abu</description>
      <pubDate>Wed, 18 Feb 2004 17:13:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-for-etc-password/m-p/3194761#M165407</guid>
      <dc:creator>A Sassi</dc:creator>
      <dc:date>2004-02-18T17:13:19Z</dc:date>
    </item>
    <item>
      <title>Re: script for /etc/password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-for-etc-password/m-p/3194762#M165408</link>
      <description>Unix is case-sensitive, change "While" to "while"</description>
      <pubDate>Wed, 18 Feb 2004 17:13:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-for-etc-password/m-p/3194762#M165408</guid>
      <dc:creator>James A. Donovan</dc:creator>
      <dc:date>2004-02-18T17:13:45Z</dc:date>
    </item>
    <item>
      <title>Re: script for /etc/password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-for-etc-password/m-p/3194763#M165409</link>
      <description>While? With Uppercase "W"? If so, change it to lowercase.&lt;BR /&gt;&lt;BR /&gt;-Sri&lt;BR /&gt;&lt;BR /&gt;PS: I think I have enough points already. No more points please.&lt;BR /&gt;</description>
      <pubDate>Wed, 18 Feb 2004 17:13:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-for-etc-password/m-p/3194763#M165409</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2004-02-18T17:13:48Z</dc:date>
    </item>
    <item>
      <title>Re: script for /etc/password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-for-etc-password/m-p/3194764#M165410</link>
      <description>I appreciated all the efforts from Jim, SRI and Rex. The Script file worked with little modifications. Thanks again guys.. You Guys deserve 10 in my book. Hey SRI, I could give more points if you like.. Just kidding&lt;BR /&gt;&lt;BR /&gt;Here is the script&lt;BR /&gt;&lt;BR /&gt;# cat idmod&lt;BR /&gt;#!/usr/bin/ksh&lt;BR /&gt;PASSWD=/etc/passwd&lt;BR /&gt;MYFILE=/export/home/infile&lt;BR /&gt;&lt;BR /&gt;while read LINE&lt;BR /&gt;do&lt;BR /&gt;USER=$(echo $LINE|awk '{FS=":";print $1}')&lt;BR /&gt;GECOS=$(echo $LINE|awk '{FS=":";print $2}')&lt;BR /&gt;&lt;BR /&gt;printf "%-20s""Modifying $USER"&lt;BR /&gt;/usr/bin/grep -nli "^${USER}:" $PASSWD&lt;BR /&gt;if [ $? = 0 ]&lt;BR /&gt;then&lt;BR /&gt;usermod -c $GECOS $USER &amp;lt;&lt;EOF&gt; /dev/null 2&amp;gt;&amp;amp;1&lt;BR /&gt;none&lt;BR /&gt;none&lt;BR /&gt;none&lt;BR /&gt;$GECOS&lt;BR /&gt;EOF&lt;BR /&gt;&lt;BR /&gt;echo "- Done\n"&lt;BR /&gt;&lt;BR /&gt;else&lt;BR /&gt;echo "- Unable to Perform Your Request\n"&lt;BR /&gt;fi&lt;BR /&gt;&lt;BR /&gt;done&amp;lt; $MYFILE&lt;BR /&gt;#&lt;/EOF&gt;</description>
      <pubDate>Thu, 19 Feb 2004 14:19:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-for-etc-password/m-p/3194764#M165410</guid>
      <dc:creator>A Sassi</dc:creator>
      <dc:date>2004-02-19T14:19:11Z</dc:date>
    </item>
  </channel>
</rss>

