<div dir="ltr"><p class="MsoNormal"><span class="apple-style-span"><span style="font-size:9.0pt;
line-height:115%;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;color:black;mso-themecolor:
text1">Dear Kae and Roger,<br>
<br>
Thank u so much 4 ur help and support … </span></span><span class="apple-style-span"><span style="font-size:9.0pt;line-height:115%;
font-family:Wingdings;mso-ascii-font-family:Verdana;mso-hansi-font-family:Verdana;
color:black;mso-themecolor:text1;mso-char-type:symbol;mso-symbol-font-family:
Wingdings"><span style="mso-char-type:symbol;mso-symbol-font-family:Wingdings">J</span></span></span><span class="apple-style-span"><span style="font-size:9.0pt;line-height:115%;
font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;color:black;mso-themecolor:text1"><br>
Today I want to share some words with all those fellow Linux devotees…….<br>
<br>
But, first let me introduce my self …..<br>
<br>
My name is gopal ghosh and I live in new Delhi….<br>
my parent wanted me to become a <span style="mso-spacerun:yes">&nbsp;</span>Railway
Ticket Checker at old Delhi railway station… but <br>
I want to become a computer wizard.. as pictures of computer systems influenced
me so much as a kid… that<br>
Some times in my dreams even I designed few cool mouse and trackball designs.<br>
<br>
&nbsp;and to fulfill my dreams I joined a local computer institute, but after 2 months
they throw me out as my questions irritate them <br>
in my view they are unable to satisfy my appetite to learn more…..<br>
<br>
still today I feel the same appetite which drives me to learn new things<br>
<br>
After this incident I strongly believe in self learning….. <span style="mso-spacerun:yes">&nbsp;</span><br>
<br>now I am providing support for more than 1400 products from 32 principal brands
(<a href="http://www.adityagroup.com">www.adityagroup.com</a>) <br>
<br>
my reason for learning Linux is I want to provide tech support for Autodesk
smoke which runs on RHEL<br>
<br>
so to learn Linux I am here on this fedora mailing list…….<br>
<br>
I know what kind of information is mentioned in man pages to learn a command FIRST
I start with books with few switches and arguments<br>
<br>
THEN I go to man pages to test some more switches and arguments , some times I
find it easy to ride through the man pages, but <br>
sometimes I don't.<br>
<br>
Each time I learn a new thing I found myself deeply in love with Linux THANKS
to Linux god who created such a nice thing which can perform so many task in
one command…<br>
<br>
all that I mentioned here to emphasis the importance of a fair discussion with
out any altercation.<br>
<br>
sometimes what I know is accurate for me and wrong for others but that doesn't
mean I fight with them to prove I am right.<br>
i discuss the topic to update myself.&nbsp;<br>
I appreciate ur efforts to help people like me and I also request u not to
involve in any kind of altercation.<br>
<br>

&nbsp;here I am submitting my information for CP , CHMOD and command redirection<br>
<br>
</span></span><b><span style="font-size:28.0pt;mso-bidi-font-size:20.0pt;
line-height:115%;color:black">command output redirection to file</span></b><b><span style="font-size:20.0pt;line-height:115%;color:black"><br>
</span></b><b style="mso-bidi-font-weight:normal">STDIN – 0<br>
STDOUT – 1<br>
STDERR – 2<br>
<br>
</b>&gt; redirect STDOUT to file <br>
&gt;&gt; append STDOUT to pre existing file<br>
<span style="color:red">2&gt; redirect STDERR to file<br>
2&gt;&gt; append STDERR to existing file</span><br>
<br>
<b style="mso-bidi-font-weight:normal"><i style="mso-bidi-font-style:normal"><span style="font-size:16.0pt;mso-bidi-font-size:11.0pt;line-height:115%">command
&lt; file </span></i></b><b style="mso-bidi-font-weight:normal"><span style="font-size:16.0pt;mso-bidi-font-size:11.0pt;line-height:115%"><span style="mso-spacerun:yes">&nbsp;</span>send file as input</span></b><br>
<br>
<b style="mso-bidi-font-weight:normal"><span style="font-size:16.0pt;
mso-bidi-font-size:11.0pt;line-height:115%;color:red">/dev/null is black hole for
data as all inputs are ignored</span></b><br>
<br>
<b style="mso-bidi-font-weight:normal"><span style="font-size:19.0pt;
mso-bidi-font-size:11.0pt;line-height:115%"><span style="mso-spacerun:yes">&nbsp;</span>PIPES</span></b><br>
<br>
<i style="mso-bidi-font-style:normal"><span style="mso-spacerun:yes">&nbsp;</span>comman1 </i>| <i style="mso-bidi-font-style:
normal">command2<br>
</i><br>
STDOUT &gt; STDIN<br>
<br>
<span style="font-size:16.0pt;mso-bidi-font-size:11.0pt;line-height:115%">(
)<span style="mso-spacerun:yes">&nbsp; </span>combines STDOUT of multiple programs
such as</span><br>
<br>
<b style="mso-bidi-font-weight:normal"><span style="font-size:17.0pt;
mso-bidi-font-size:11.0pt;line-height:115%;color:red">(cal2007 ; cal2008) |
less</span></b><br>
<br>
<b style="mso-bidi-font-weight:normal"><span style="font-size:19.0pt;
mso-bidi-font-size:11.0pt;line-height:115%;color:red">&amp;2&gt;&amp;1
redirects STDERR to STDIN</span></b><br>
<br>
cat filename.txt<br>
Hello, World!<br>
<br>
cat &lt; filename.txtx<br>
Hello, World<br style="mso-special-character:line-break">
<br style="mso-special-character:line-break">
</p>

<p class="MsoNormal"><b><span style="font-size:16.0pt;line-height:115%">ls </span></b><b><span style="font-size:22.0pt;line-height:115%;color:red">&gt;</span></b><b><span style="font-size:16.0pt;line-height:115%"> list.of.files </span></b>– redirect
command output to this file</p>

<p class="MsoNormal">&nbsp;</p>

<p class="MsoNormal"><b><span style="font-size:16.0pt;line-height:115%">ls </span></b><b><span style="font-size:22.0pt;line-height:115%;color:red">&gt;&gt;</span></b><b><span style="font-size:16.0pt;line-height:115%"> list.of.files</span> </b>- append
output at the end of file</p>

<p class="MsoNormal"><b><span style="font-size:20.0pt;line-height:115%;
color:black">command output redirection to another command</span></b></p>

<p class="MsoNormal"><b>&nbsp;</b></p>

<p class="MsoNormal"><b><span style="font-size:16.0pt;line-height:115%">ls </span></b><b><span style="font-size:22.0pt;line-height:115%;color:red">|</span></b><b><span style="font-size:16.0pt;line-height:115%"> more </span></b></p>


<p class="MsoNormal"><b><span style="font-size:16.0pt;line-height:115%">&nbsp;</span></b></p>

<p class="MsoNormal"><b><span style="font-size:16.0pt;line-height:115%">ls </span></b><b><span style="font-size:22.0pt;line-height:115%;color:red">|</span></b><b><span style="font-size:16.0pt;line-height:115%"> sort</span><br>

</b><span class="apple-style-span"><span style="font-size:9.0pt;line-height:115%;
font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;color:black;mso-themecolor:text1"><br>
</span></span><b style="mso-bidi-font-weight:normal"><span style="font-size:
20.0pt;line-height:115%;mso-ascii-font-family:Calibri;mso-fareast-font-family:
&quot;Times New Roman&quot;;mso-hansi-font-family:Calibri;mso-bidi-font-family:&quot;Times New Roman&quot;">cp
command</span></b><b style="mso-bidi-font-weight:normal"><span style="mso-ascii-font-family:Calibri;mso-fareast-font-family:&quot;Times New Roman&quot;;
mso-hansi-font-family:Calibri;mso-bidi-font-family:&quot;Times New Roman&quot;"><br>
<br>
</span></b><span style="mso-ascii-font-family:Calibri;mso-fareast-font-family:
&quot;Times New Roman&quot;;mso-hansi-font-family:Calibri;mso-bidi-font-family:&quot;Times New Roman&quot;">cp
is a file &amp; directory copy command<br>
<br>
<b style="mso-bidi-font-weight:normal">cp file1 file2 dir</b> <br>
<br>
for /gopal.nano<br>
<br>
<b><span style="color:red">cp /gopal.nano gopal2.nano /home</span></b><br>
<br>
<b style="mso-bidi-font-weight:normal">cp file1 file2 file3 file4 dir</b> <br>
<b style="mso-bidi-font-weight:normal"><br>
cp -a copies files and directories recurisvly<br>
cp -p copies content along with permission and time stamp<br>
cp -i interactive mode<br>
cp -f force<br>
<br>
</b></span><b style="mso-bidi-font-weight:normal"><span style="font-size:19.0pt;
mso-bidi-font-size:11.0pt;line-height:115%;mso-ascii-font-family:Calibri;
mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-font-family:Calibri;
mso-bidi-font-family:&quot;Times New Roman&quot;">cp –api</span></b><b style="mso-bidi-font-weight:
normal"><span style="mso-ascii-font-family:Calibri;mso-fareast-font-family:
&quot;Times New Roman&quot;;mso-hansi-font-family:Calibri;mso-bidi-font-family:&quot;Times New Roman&quot;"><br>
</span></b><b><span style="font-size:20.0pt;line-height:115%;mso-ascii-font-family:
Calibri;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-font-family:Calibri;
mso-bidi-font-family:&quot;Times New Roman&quot;">chmod command</span></b><span style="mso-ascii-font-family:Calibri;mso-fareast-font-family:&quot;Times New Roman&quot;;
mso-hansi-font-family:Calibri;mso-bidi-font-family:&quot;Times New Roman&quot;"> <br>
<br>
change mode command<br>
<br>
octal:<span style="mso-tab-count:2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>0<span style="mso-tab-count:2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>6<span style="mso-tab-count:2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>4<span style="mso-tab-count:2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>0<br>

binary: <span style="mso-tab-count:1"> </span>000<span style="mso-tab-count:
2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>111<span style="mso-tab-count:2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>111<span style="mso-tab-count:2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>111<br>
symbolic:<span style="mso-tab-count:1">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>sst <span style="mso-tab-count:2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>rwx<span style="mso-tab-count:2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>rwx<span style="mso-tab-count:2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>rwx<br>

<br>
<span style="mso-tab-count:2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>special<span style="mso-tab-count:2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>user<span style="mso-tab-count:
2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>group<span style="mso-tab-count:2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>other<br>
<span style="mso-tab-count:2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>attributes<br style="mso-special-character:line-break">
<br style="mso-special-character:line-break">
</span></p>

<p class="MsoNormal"><span class="SourceText">chmod o=r archive.sh<br>
chmod g= topsecret.inf<br>
chmod og=rw publicity.html<br>
chmod ug=o</span></p>

<p class="PreformattedText" style="margin-bottom:14.15pt"><span class="SourceText">chmod
g=u info.dat</span></p>

<p class="PreformattedText"><span class="SourceText">rwx r-x r-- info.sh</span></p>

<p class="PreformattedText" style="margin-bottom:14.15pt">111 101 100<br>
7<span style="mso-spacerun:yes">&nbsp;&nbsp; </span>5<span style="mso-spacerun:yes">&nbsp;&nbsp;
</span>4<br>
<br>
<b><span style="color:red">r-- <span style="mso-tab-count:1">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>100/4<br>
rw-<span style="mso-tab-count:1">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>110/6<br>
rwx<span style="mso-tab-count:1">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>111/7<br>
<br>
-w-<span style="mso-tab-count:1">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>010/2<br>
-wx<span style="mso-tab-count:1">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>011/3<br>
<br>
--x<span style="mso-tab-count:1">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>001/1</span></b><br>
<br>
<b><span style="font-size:12.0pt">chmod 444 gopal.nano</span></b><br>
<br>
chmod [OPTION]... MODE[,MODE]... FILE...</p>

<p class="PreformattedText" style="margin-bottom:14.15pt">chmod [OPTION]...
OCTAL-MODE FILE...</p>

<span style="font-size:11.0pt;line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
mso-fareast-font-family:&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA">chmod
[OPTION]... --reference=RFILE FILE...<br>
</span><span class="apple-style-span"><span style="font-size:9.0pt;line-height:
115%;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:&quot;Times New Roman&quot;;
mso-fareast-theme-font:minor-fareast;mso-bidi-font-family:&quot;Times New Roman&quot;;
mso-bidi-theme-font:minor-bidi;color:black;mso-themecolor:text1;mso-ansi-language:
EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA"><br>
<br>
And finally HOPE u people don't mind me for repeating my questions again<br>
<br>
<br>
</span><span style="font-size:10.0pt;line-height:115%;font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;
mso-fareast-font-family:&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;
color:black;mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:
AR-SA">** how to search for a group of files using wildcard and copy the result</span></span><span style="font-size:10.0pt;line-height:115%;font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;
mso-fareast-font-family:&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;
color:black;mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:
AR-SA"><br>
<span class="apple-style-span">content and redirecting it to a dir</span></span><span class="apple-style-span"><span style="font-size:9.0pt;line-height:115%;
font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:&quot;Times New Roman&quot;;
mso-fareast-theme-font:minor-fareast;mso-bidi-font-family:&quot;Times New Roman&quot;;
mso-bidi-theme-font:minor-bidi;color:black;mso-themecolor:text1;mso-ansi-language:
EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA"><br>
<br>
</span><span style="font-size:10.0pt;line-height:115%;font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;
mso-fareast-font-family:&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;
color:black;mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:
AR-SA">** how to use chmod command (in octal mode) for n number of files
present in a</span></span><span style="font-size:10.0pt;line-height:115%;
font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:&quot;Times New Roman&quot;;
mso-fareast-theme-font:minor-fareast;color:black;mso-ansi-language:EN-US;
mso-fareast-language:EN-US;mso-bidi-language:AR-SA"><br>
<span class="apple-style-span">directory</span></span><span class="apple-style-span"><span style="font-size:9.0pt;line-height:115%;
font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:&quot;Times New Roman&quot;;
mso-fareast-theme-font:minor-fareast;mso-bidi-font-family:&quot;Times New Roman&quot;;
mso-bidi-theme-font:minor-bidi;color:black;mso-themecolor:text1;mso-ansi-language:
EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA"><br style="mso-special-character:
line-break">
<br style="mso-special-character:line-break"></span></span>Thanks<br>Regards<br><br><div class="gmail_quote">On Thu, Sep 18, 2008 at 5:28 PM, Roger Millington <span dir="ltr">&lt;<a href="mailto:roger.millington@tesco.net" target="_blank">roger.millington@tesco.net</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div><br>
<br>
Kae Verens wrote:<br>
&gt; Roger Millington wrote:<br>
&gt;&gt; man chmod<br>
&gt;&gt;<br>
&gt;<br>
&gt; that&#39;s a bit harsh, Roger! It&#39;s possible that maybe Gopal does not<br>
&gt; understand the man pages.<br>
<br>
</div>There is no indication that Gopal has read the &#39;man&#39; pages or even<br>
understands that they exist. I would expect that my response(s) will<br>
invite Gopal&#39;s curiosity and that he will investigate this mysterious<br>
&#39;man&#39; command.<br>
<br>
The alternative is for someone to spend 20 minutes making precis of the<br>
relevant &#39;man&#39; pages and posting them.<br>
<font color="#888888"><br>
Roger<br>
</font><div><div></div><div><br>
<br>
&gt;<br>
&gt; example:<br>
&gt; chmod 750 filename1 filename2<br>
&gt; first digit is user<br>
&gt; second digit is group<br>
&gt; third digit is everyone (world)<br>
&gt; 7 = allow file owner to read, write, execute<br>
&gt; 5 = allow members of file&#39;s group to read and execute<br>
&gt; 0 = do not let anyone else use the file<br>
&gt;<br>
&gt; the numbers are calculated by adding these up<br>
&gt; 4 = allowed to read<br>
&gt; 2 = allowed to write<br>
&gt; 1 = allowed to execute.<br>
&gt; so 750 = (4+2+1)(4+1)(0)<br>
&gt;<br>
&gt; kae<br>
&gt;<br>
&gt;&gt; Gopal Ghosh wrote:<br>
&gt;&gt;<br>
&gt;&gt;&gt; Dear all,<br>
&gt;&gt;&gt; how to use chmod command (in octal mode) for n number of files<br>
&gt;&gt;&gt; present in a<br>
&gt;&gt;&gt; directory<br>
&gt;&gt;&gt; Thanks<br>
&gt;&gt;&gt; regards<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; ------------------------------------------------------------------------<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; _______________________________________________<br>
&gt;&gt;&gt; Fedora-laptop-list mailing list<br>
&gt;&gt;&gt; <a href="mailto:Fedora-laptop-list@redhat.com" target="_blank">Fedora-laptop-list@redhat.com</a><br>
&gt;&gt;&gt; <a href="http://www.redhat.com/mailman/listinfo/fedora-laptop-list" target="_blank">http://www.redhat.com/mailman/listinfo/fedora-laptop-list</a><br>
&gt;&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; Fedora-laptop-list mailing list<br>
&gt;&gt; <a href="mailto:Fedora-laptop-list@redhat.com" target="_blank">Fedora-laptop-list@redhat.com</a><br>
&gt;&gt; <a href="http://www.redhat.com/mailman/listinfo/fedora-laptop-list" target="_blank">http://www.redhat.com/mailman/listinfo/fedora-laptop-list</a><br>
&gt;&gt;<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; Fedora-laptop-list mailing list<br>
&gt; <a href="mailto:Fedora-laptop-list@redhat.com" target="_blank">Fedora-laptop-list@redhat.com</a><br>
&gt; <a href="http://www.redhat.com/mailman/listinfo/fedora-laptop-list" target="_blank">http://www.redhat.com/mailman/listinfo/fedora-laptop-list</a><br>
&gt;<br>
</div></div></blockquote></div><br></div>