<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><!-- generator="wordpress/wordpress-mu-1.2.1" --><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>UNIX Coding School</title>
	<link>http://unix.coding-school.com</link>
	<description>UNIX Code, UNIX Examples, UNIX Demos, UNIX Tutorials</description>
	<pubDate>Mon, 01 Jun 2009 14:07:12 +0000</pubDate>
	<generator>http://wordpress.org/?v=wordpress-mu-1.2.1</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/UnixCodingSchool" type="application/rss+xml" /><feedburner:emailServiceId>UnixCodingSchool</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>Stripping out newlines from string</title>
		<link>http://feedproxy.google.com/~r/UnixCodingSchool/~3/SImPCTEhF60/</link>
		<comments>http://unix.coding-school.com/stripping-out-newlines-from-string/#comments</comments>
		<pubDate>Mon, 01 Jun 2009 14:06:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[UNIX Coding Training]]></category>

		<guid isPermaLink="false">http://unix.coding-school.com/stripping-out-newlines-from-string/</guid>
		<description><![CDATA[
Problem
Different versions of UNIX handle the stripping of newlines in a string differently. Obviously if you echo a string, the shell automatically expands newlines &#8220;\n&#8221;.


Solution
sed and tr don&#8217;t appear to like performing these substitutions. But with Perl its a steal.  


Example
% echo &#39;hello world\nhello world\ntest it&#39; &#124; perl -ane &#39;s#\\n# #g; print,&#34;";&#39;hello world hello [...]]]></description>
			<content:encoded><![CDATA[
<h1>Problem</h1>
<p>Different versions of UNIX handle the stripping of newlines in a string differently. Obviously if you echo a string, the shell automatically expands newlines &#8220;\n&#8221;.</p>
<br/>
<br/>
<h1>Solution</h1>
<p>sed and tr don&#8217;t appear to like performing these substitutions. But with Perl its a steal. <img src='http://unix.coding-school.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br/>
<br/>
<h1>Example</h1>
<p>% echo &#39;hello world\nhello world\ntest it&#39; | perl -ane &#39;s#\\n# #g; print,&#34;";&#39;<br />hello world hello world test it</p>
<br/>
<br/>
<h1>Reference</h1>
<p>Technorati Tags: <a target=_blank href="http://technorati.com/tag/" rel="tag"></a>, <a target=_blank href="http://technorati.com/tag/Unix+Coding+School" rel="tag"> Unix Coding School</a></p><ul><li><a target="_blank" href="http://perl.coding-school.com/">Check out my perl blog</a></li></ul>
<br/>
<br/>
<h1>Recommended</h1>
 
<br/>
<br/>
]]></content:encoded>
			<wfw:commentRss>http://unix.coding-school.com/stripping-out-newlines-from-string/feed/</wfw:commentRss>
		<feedburner:origLink>http://unix.coding-school.com/stripping-out-newlines-from-string/</feedburner:origLink></item>
		<item>
		<title>Resize image command line - mogrify</title>
		<link>http://feedproxy.google.com/~r/UnixCodingSchool/~3/4V95zlTTms4/</link>
		<comments>http://unix.coding-school.com/resize-image-command-line-mogrify/#comments</comments>
		<pubDate>Mon, 18 May 2009 10:24:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[UNIX Coding Training]]></category>

		<guid isPermaLink="false">http://unix.coding-school.com/resize-image-command-line-mogrify/</guid>
		<description><![CDATA[
Problem
You want to resize images from the command line.


Solution
Use image magik mogrify command.mogrify -resize &#8220;percentage&#8221; image_naAlso you can view current sizing - like this:% identify IMG_3864.JPGIMG_3864.JPG JPEG 563&#215;422 563&#215;422+0+0 DirectClass 8-bit 32.8887kb


Example
mogrify -resize 20% IMG_3705.JPG


Reference
Technorati Tags: mogrify man page - resize an image


Recommended
 


]]></description>
			<content:encoded><![CDATA[
<h1>Problem</h1>
<p>You want to resize images from the command line.</p>
<br/>
<br/>
<h1>Solution</h1>
<p>Use image magik mogrify command.</p><p>mogrify -resize &#8220;percentage&#8221; image_na</p><p>Also you can view current sizing - like this:</p><p>% identify IMG_3864.JPG<br />IMG_3864.JPG JPEG 563&#215;422 563&#215;422+0+0 DirectClass 8-bit 32.8887kb</p>
<br/>
<br/>
<h1>Example</h1>
<p>mogrify -resize 20% IMG_3705.JPG</p>
<br/>
<br/>
<h1>Reference</h1>
<p>Technorati Tags: <a target=_blank href="http://technorati.com/tag/" rel="tag"></a></p><ul><li><a href="http://linux-man-pages.coding-school.com/man/mogrify-1" target="_blank">mogrify man page - resize an image</a></li></ul>
<br/>
<br/>
<h1>Recommended</h1>
 
<br/>
<br/>
]]></content:encoded>
			<wfw:commentRss>http://unix.coding-school.com/resize-image-command-line-mogrify/feed/</wfw:commentRss>
		<feedburner:origLink>http://unix.coding-school.com/resize-image-command-line-mogrify/</feedburner:origLink></item>
		<item>
		<title>UNIX Pipes - event triggers action</title>
		<link>http://feedproxy.google.com/~r/UnixCodingSchool/~3/yc2ICN4V0HI/</link>
		<comments>http://unix.coding-school.com/unix-pipes-event-triggers-action/#comments</comments>
		<pubDate>Wed, 06 May 2009 00:39:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[UNIX Coding Specialist]]></category>

		<guid isPermaLink="false">http://unix.coding-school.com/unix-pipes-event-triggers-action/</guid>
		<description><![CDATA[
Problem
You want to listen on a pipe and perform commands, based on the text sent to the pipe.This could be useful for triggering action based on events;Running code as different users - i.e. allow root or a functional user to run something - just need to allow access to group of users, via permission to [...]]]></description>
			<content:encoded><![CDATA[
<h1>Problem</h1>
<p>You want to listen on a pipe and perform commands, based on the text sent to the pipe.</p><p>This could be useful for triggering action based on events;<br />Running code as different users - i.e. allow root or a functional user to run something - just need to allow access to group of users, via permission to write to the pipe.</p>
<br/>
<br/>
<h1>Solution</h1>
<p>1.	mknod /tmp/.restart_crd</p><p>2.	chmod a+w /tmp/.restart_crd</p><p>3.	nohup tail -f /tmp/.restart_crd| while read line<br />do<br />case &#8220;$line&#8221; in<br />    &#8216;restart&#8217;)	cmd=&#8221;./stop &gt;&gt; /tmp/restart.log 2&gt;&amp;1; sleep 5; ./start &gt;&gt; /tmp/restart.log 2&gt;&amp;1&#8243;;;<br />    &#8217;stop&#8217;) cmd=&#8221;./stop &gt;&gt; /tmp/restart.log 2&gt;&amp;1&#8243;;;<br />    &#8217;start&#8217;) cmd=&#8221;./start &gt;&gt; /tmp/restart.log 2&gt;&amp;1&#8243;;;<br />    *) cmd=&#8221;no match ${line}.&#8221;;;<br />esac</p><p>echo &#8220;command is $cmd&#8221;<br />eval $cmd</p><p>sleep 5</p><p>done &amp;</p><p>4.	disown</p>
<br/>
<br/>
<h1>Example</h1>
<p>$ echo &#34;restart&#34; &gt; /tmp/.restart_crd</p><p>$ echo &#34;start&#34; &gt; /tmp/.restart_crd</p><p>$ echo &#34;stop&#34; &gt; /tmp/.restart_crd</p><p>Watch output in by tail -f /tmp/restart.log</p>
<br/>
<br/>
<h1>Reference</h1>
<p>Technorati Tags: <a target=_blank href="http://technorati.com/tag/" rel="tag"></a>, <a target=_blank href="http://technorati.com/tag/Unix+Coding+School" rel="tag"> Unix Coding School</a></p><ul><li><a target="_blank" href="http://linux-man-pages.coding-school.com/man/mknod-1">Linux Man Pages - mknod command</a></li><li><a target="_blank" href="http://linux-man-pages.coding-school.com/man/bash-1">Linux Man Pages - bash command</a></li><li><a target="_blank" href="http://linux-man-pages.coding-school.com/man/chmod-1">Linux Man Pages - chmod command</a></li></ul>
<br/>
<br/>
<h1>Recommended</h1>
 
<br/>
<br/>
]]></content:encoded>
			<wfw:commentRss>http://unix.coding-school.com/unix-pipes-event-triggers-action/feed/</wfw:commentRss>
		<feedburner:origLink>http://unix.coding-school.com/unix-pipes-event-triggers-action/</feedburner:origLink></item>
		<item>
		<title>unix tutorial [2009-03-28 22:40:13]</title>
		<link>http://feedproxy.google.com/~r/UnixCodingSchool/~3/cwRKxxuypWQ/</link>
		<comments>http://unix.coding-school.com/unix-tutorial-2009-03-28-224013/#comments</comments>
		<pubDate>Sat, 28 Mar 2009 22:40:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[archives]]></category>

		<guid isPermaLink="false">http://unix.coding-school.com/unix-tutorial-2009-03-28-224013/</guid>
		<description><![CDATA[
&#62;



Linux Cortex: UNIX Tutorial for Beginners

By Oncle Jean

UNIX Tutorial for Beginners. &#34;UNIX is an operating syste=
m which was first developed in the 1960s, and has been under constant devel=
opment ever since.&#34; Linux.co.uk. Publi=E9 par Oncle Jean =E0 l&#39;adr=
esse 5:07 PM &#8230;


Linux Cortex - http://linuxcortex.blogspot.com/






ate another alert.
e your alerts.


.
]]></description>
			<content:encoded><![CDATA[<div>
&gt;</p>
<table>
<tr>
<a><br />
Linux Cortex: <b>UNIX Tutorial</b> for Beginners</a><br />
<font><br />
<font>By Oncle Jean<br />
</font><br />
<b>UNIX Tutorial</b> for Beginners. &quot;<b>UNIX</b> is an operating syste=<br />
m which was first developed in the 1960s, and has been under constant devel=<br />
opment ever since.&quot; Linux.co.uk. Publi=E9 par Oncle Jean =E0 l&#39;adr=<br />
esse 5:07 PM <b>&#8230;</b><br />
<font><br />
<a><br />
Linux Cortex - http://linuxcortex.blogspot.com/</a></font><br />
</font></td>
</tr>
</table>
<p><hr noshade size="3D1"><font><br />
</font>
<p><font><br />
ate</a> another alert.<br />
e</a> your alerts.<br />
</font></p>
</div>
<p>.</p>
]]></content:encoded>
			<wfw:commentRss>http://unix.coding-school.com/unix-tutorial-2009-03-28-224013/feed/</wfw:commentRss>
		<feedburner:origLink>http://unix.coding-school.com/unix-tutorial-2009-03-28-224013/</feedburner:origLink></item>
		<item>
		<title>unix tips [2009-03-28 19:52:12]</title>
		<link>http://feedproxy.google.com/~r/UnixCodingSchool/~3/R0BBCi4p7g0/</link>
		<comments>http://unix.coding-school.com/unix-tips-2009-03-28-195212/#comments</comments>
		<pubDate>Sat, 28 Mar 2009 19:52:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[archives]]></category>

		<guid isPermaLink="false">http://unix.coding-school.com/unix-tips-2009-03-28-195212/</guid>
		<description><![CDATA[



Unix Database Administrator Jobs Columbus - DBACrossing &#124; Hi Video

By admin

dbacrossing Get unix database administrator jobs, dba development jo=
bs, dba engineers jobs, dba entry level jobs, dba freelance jobs, dba job o=
pportunities, dba. &#8230; Hank Takase in Work Where You Want To - No Mo=
re Institutional Sales Te=85 =BB=20
training 1/8/09 &#124; Hi Video =85 in [...]]]></description>
			<content:encoded><![CDATA[<div>
<table>
<tr>
<a><br />
<b>Unix</b> Database Administrator Jobs Columbus - DBACrossing | Hi Video<br />
<font><br />
<font>By admin<br />
</font><br />
dbacrossing Get <b>unix</b> database administrator jobs, dba development jo=<br />
bs, dba engineers jobs, dba entry level jobs, dba freelance jobs, dba job o=<br />
pportunities, dba. <b>&#8230;</b> Hank Takase in Work Where You Want To - No Mo=<br />
re Institutional Sales Te=85 =BB=20<br />
training 1/8/09 | Hi Video =85 in training 1/8/09; Topics about Constructio=<br />
n =BB A=85 in Watch Our Video Now! The Best Construction Consultant i=85 =<br />
=BB Fast Ways To Lose Weight - =85 in Fast Ways To Lose Weight - 5 <b>Tips To Lose Weight - Stay=85 <b>&#8230;</b><br />
<font><br />
<a><br />
Hi Video - http://www.hivideo.org/</a></font><br />
</font></td>
</tr>
<tr>
<td>
<a><br />
Mac Os X <b>Unix</b> 101 Byte Sized Projects | Ebook Free Downloads</a><br />
<font><br />
<font>By admin<br />
</font><br />
<b>Unix</b> is no longer someone else&#39;s OS. With Mac OS X built on top =<br />
of it, <b>Unix</b> is becoming. Mac Os X <b>Unix</b> 101 Byte-Sized Project=<br />
s Adrian Mayo- Based on a popular series of <b>Unix tips</b>, this book aim=<br />
s to deliver: comprehensive tutorials and. <b>&#8230;</b><br />
<font><br />
<a><br />
Ebook Free Downloads - http://beginner-writing.com/</a></font><br />
</font></td>
</tr>
</table>
<p><hr noshade size="3D1"><font><br />
</font>
<p><font><br />
ate</a> another alert.<br />
e</a> your alerts.<br />
</font></p>
</div>
<p>.</p>
]]></content:encoded>
			<wfw:commentRss>http://unix.coding-school.com/unix-tips-2009-03-28-195212/feed/</wfw:commentRss>
		<feedburner:origLink>http://unix.coding-school.com/unix-tips-2009-03-28-195212/</feedburner:origLink></item>
		<item>
		<title>unix tips [2009-03-27 12:14:45]</title>
		<link>http://feedproxy.google.com/~r/UnixCodingSchool/~3/d52skhAXRqQ/</link>
		<comments>http://unix.coding-school.com/unix-tips-2009-03-27-121445/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 12:14:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[archives]]></category>

		<guid isPermaLink="false">http://unix.coding-school.com/unix-tips-2009-03-27-121445/</guid>
		<description><![CDATA[




Quick Solaris/UNIX Tips: Solaris: Mount an ISO file

By Scots

Quick Solaris/UNIX Tips. Friday, March 27, 2009. Solaris: Mount an ISO file. Create the device lofiadm -a /export/temp/software.iso /dev/lofi/1. Mount the device mount -F hsfs -o ro /dev/lofi/1 /mnt. You can create multiples, &#8230;


Quick Solaris/UNIX Tips - http://www.sunfederal.net/tips/








.
]]></description>
			<content:encoded><![CDATA[<div>
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td>
<a href="http://www.sunfederal.net/tips/2009/03/solaris-mount-iso-file.html"><br />
Quick Solaris/<b>UNIX Tips</b>: Solaris: Mount an ISO file</a><br />
<font size="-1"><br />
<font color="#666666">By Scots<br />
</font><br />
Quick Solaris/<b>UNIX Tips</b>. Friday, March 27, 2009. Solaris: Mount an ISO file. Create the device lofiadm -a /export/temp/software.iso /dev/lofi/1. Mount the device mount -F hsfs -o ro /dev/lofi/1 /mnt. You can create multiples, <b>&#8230;</b><br />
<font color="green"><br />
<a href="http://www.sunfederal.net/tips/" title="http://www.sunfederal.net/tips/"><br />
Quick Solaris/UNIX Tips - http://www.sunfederal.net/tips/</a></font><br />
</font></td>
</tr>
</table>
<p><hr noshade size="1"><font size="-1"><br />
</font>
<p><font size="-1"><br />
</font></p>
</div>
<p>.</p>
]]></content:encoded>
			<wfw:commentRss>http://unix.coding-school.com/unix-tips-2009-03-27-121445/feed/</wfw:commentRss>
		<feedburner:origLink>http://unix.coding-school.com/unix-tips-2009-03-27-121445/</feedburner:origLink></item>
		<item>
		<title>unix tutorial [2009-03-27 10:50:09]</title>
		<link>http://feedproxy.google.com/~r/UnixCodingSchool/~3/8H3rFojJzCg/</link>
		<comments>http://unix.coding-school.com/unix-tutorial-2009-03-27-105009/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 10:50:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[archives]]></category>

		<guid isPermaLink="false">http://unix.coding-school.com/unix-tutorial-2009-03-27-105009/</guid>
		<description><![CDATA[




Linux &#38; Unix General - Ubuntu 9.04 (jaunty) Beta Released And &#8230;

Linux &#38; Unix tutorial, The Ubuntu developers are moving quickly to bring you the latest and greatest software the Open Source Community has to offer. This is the Ubuntu 9.04 beta release, which br &#8230;


TutorialsRoom.com - http://www.tutorialsroom.com/








.
]]></description>
			<content:encoded><![CDATA[<div>
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td>
<a href="http://www.tutorialsroom.com/tutorials/tutorial/1215/ubuntu-904-jaunty-beta-released-and-available-for-download/"><br />
Linux &amp; <b>Unix</b> General - Ubuntu 9.04 (jaunty) Beta Released And <b>&#8230;</b></a><br />
<font size="-1"><br />
Linux &amp; <b>Unix tutorial</b>, The Ubuntu developers are moving quickly to bring you the latest and greatest software the Open Source Community has to offer. This is the Ubuntu 9.04 beta release, which br &#8230;<br />
<font color="green"><br />
<a href="http://www.tutorialsroom.com/" title="http://www.tutorialsroom.com/"><br />
TutorialsRoom.com - http://www.tutorialsroom.com/</a></font><br />
</font></td>
</tr>
</table>
<p><hr noshade size="1"><font size="-1"><br />
</font>
<p><font size="-1"><br />
</font></p>
</div>
<p>.</p>
]]></content:encoded>
			<wfw:commentRss>http://unix.coding-school.com/unix-tutorial-2009-03-27-105009/feed/</wfw:commentRss>
		<feedburner:origLink>http://unix.coding-school.com/unix-tutorial-2009-03-27-105009/</feedburner:origLink></item>
		<item>
		<title>unix tutorial [2009-03-26 10:16:43]</title>
		<link>http://feedproxy.google.com/~r/UnixCodingSchool/~3/1K_AeHWG57U/</link>
		<comments>http://unix.coding-school.com/unix-tutorial-2009-03-26-101643/#comments</comments>
		<pubDate>Thu, 26 Mar 2009 10:16:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[archives]]></category>

		<guid isPermaLink="false">http://unix.coding-school.com/unix-tutorial-2009-03-26-101643/</guid>
		<description><![CDATA[
&#62;



PHP Tutorials - Crivion=92s Blog =BB PHP Tutorial : Forms processing=
 &#8230;

By admin

PHP Tutorial : Writing your own custom functions &#183; PHP Tut=
orial : Parse/split url and get components &#183; PHP Tutorial=
 : Parse english time into unix timestamp &#183; PHP Tutorial : Detect visitor country by ip address &#8230;


PHP Tutorials - Crivion&#39;s Blog - [...]]]></description>
			<content:encoded><![CDATA[<div>
&gt;</p>
<table>
<tr>
<a><br />
PHP Tutorials - Crivion=92s Blog =BB PHP <b>Tutorial</b> : Forms processing=<br />
 <b>&#8230;</b></a><br />
<font><br />
<font>By admin<br />
</font><br />
PHP <b>Tutorial</b> : Writing your own custom functions &middot; PHP <b>Tut=<br />
orial</b> : Parse/split url and get components &middot; PHP <b>Tutorial</b>=<br />
 : Parse english time into <b>unix</b> timestamp &middot; PHP <b>Tutorial : Detect visitor country by ip address <b>&#8230;</b><br />
<font><br />
<a><br />
PHP Tutorials - Crivion&#39;s Blog - http://www.crivionweb.com/phpblog/</a>=<br />
</font><br />
</font></td>
</tr>
</table>
<p><hr noshade size="3D1"><font><br />
</font>
<p><font><br />
ate</a> another alert.<br />
e</a> your alerts.<br />
</font></p>
</div>
<p>.</p>
]]></content:encoded>
			<wfw:commentRss>http://unix.coding-school.com/unix-tutorial-2009-03-26-101643/feed/</wfw:commentRss>
		<feedburner:origLink>http://unix.coding-school.com/unix-tutorial-2009-03-26-101643/</feedburner:origLink></item>
		<item>
		<title>unix tips [2009-03-26 01:30:48]</title>
		<link>http://feedproxy.google.com/~r/UnixCodingSchool/~3/hgSGsUR6EIQ/</link>
		<comments>http://unix.coding-school.com/unix-tips-2009-03-26-013048/#comments</comments>
		<pubDate>Thu, 26 Mar 2009 01:30:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[archives]]></category>

		<guid isPermaLink="false">http://unix.coding-school.com/unix-tips-2009-03-26-013048/</guid>
		<description><![CDATA[



Unix Tips Podcast =BB Update

By techreviewsfromus

Unix Tips Podcast &#183; About &#183; Authors. Podcast Store. Su=
pport This Site. Sweyn&#39;s Twitter. Follow Me Up! TwitterCounter for @swe=
yn. Sweyn isn&#39;t the only one on twitter&#8230; TwitterCounter for @abramson=
.. Donate &#8230;


Unix Tips Podcast - http://techreviewsfromus.podbean.com/





My Tech Notes and Stuff: #1 UNIX Tips

By Paul Valentino

UNIX Tips. Determine disk used versus [...]]]></description>
			<content:encoded><![CDATA[<div>
<table>
<tr>
<a><br />
<b>Unix Tips</b> Podcast =BB Update</a><br />
<font><br />
<font>By techreviewsfromus<br />
</font><br />
<b>Unix Tips</b> Podcast &middot; About &middot; Authors. Podcast Store. Su=<br />
pport This Site. Sweyn&#39;s Twitter. Follow Me Up! TwitterCounter for @swe=<br />
yn. Sweyn isn&#39;t the only one on twitter&#8230; TwitterCounter for @abramson=<br />
.. Donate <b>&#8230;</b><br />
<font><br />
<a><br />
Unix Tips Podcast - http://techreviewsfromus.podbean.com/</a></font><br />
</font></td>
</tr>
<tr>
<td>
<a><br />
My Tech Notes and Stuff: #1 <b>UNIX Tips</b></a><br />
<font><br />
<font>By Paul Valentino<br />
</font><br />
<b>UNIX Tips</b>. Determine disk used versus available on Linux: df -Pkl |g=<br />
rep -v shm|awk &#39; { used +=3D $3/1024/1024 } END { printf(&quot;%d Gb to=<br />
tal used&quot;, used)}&#39; df -Pkl |grep -v shm|awk &#39; { avail +=3D $2/=<br />
1024/1024 } END { printf(&quot;%d Gb total avail&quot; <b>&#8230;</b><br />
<font><br />
<a><br />
My Tech Notes and Stuff - http://pvalentino.blogspot.com/</a></font><br />
</font></td>
</tr>
<tr>
<td>
<a><br />
The Ultimate Small Business Marketing Toolkit: All the <b>Tips</b>, Forms &#8230;</b></a><br />
<font><br />
<font>By longmarch<br />
</font><br />
Beth Goldstein - The Ultimate Small Business Marketing Toolkit: All the <b>=<br />
Tips</b>, Forms, and Strategies You&#39;ll Ever Need! McGraw-Hill | 2007 | =<br />
ISBN: 0071477187 | &#8230;<br />
<font><br />
<a><br />
Free Book Source - http://freebooksource.com/</a></font><br />
</font></td>
</tr>
<tr>
<td>
<a><br />
How to enable font anti-aliasing in Wine | Wine Reviews</a><br />
<font><br />
Most Linux/<b>Unix</b> operating systems come with nice fonts also such as =<br />
the Liberation font set. OK, this sounds like chinease to you&#8230;Don&#39;t w=<br />
orry their is a handy little script that will do everything for you as Wine=<br />
 has supported font <b>&#8230;</b><br />
<font><br />
<a><br />
Wine Reviews your source for&#8230; - http://www.wine-reviews.net/wine-reviews.=<br />
html</a></font><br />
</font></td>
</tr>
</table>
<p><hr noshade size="3D1"><font><br />
</font>
<p><font><br />
ate</a> another alert.<br />
e</a> your alerts.<br />
</font></p>
</div>
<p>.</p>
]]></content:encoded>
			<wfw:commentRss>http://unix.coding-school.com/unix-tips-2009-03-26-013048/feed/</wfw:commentRss>
		<feedburner:origLink>http://unix.coding-school.com/unix-tips-2009-03-26-013048/</feedburner:origLink></item>
		<item>
		<title>unix code [2009-03-25 18:20:53]</title>
		<link>http://feedproxy.google.com/~r/UnixCodingSchool/~3/Tr2VRzfxwoQ/</link>
		<comments>http://unix.coding-school.com/unix-code-2009-03-25-182053/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 18:20:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[archives]]></category>

		<guid isPermaLink="false">http://unix.coding-school.com/unix-code-2009-03-25-182053/</guid>
		<description><![CDATA[



10 operating systems the world left behind &#124; Ramblings

By admin

Instead of rewriting the applications, they rewrote the NeXTStep object lay=
er, which they laid on top of Unix code and glued together with X Wi=
ndow. Presto! A more open OpenStep than OpenStep. Whatever will be will BeO=
S &#8230;


Ramblings - http://ramblings.ninebean.com/





Binary File, Array Scripting Secrets

Benchmarking with the [...]]]></description>
			<content:encoded><![CDATA[<div>
<table>
<tr>
<a><br />
10 operating systems the world left behind | Ramblings</a><br />
<font><br />
<font>By admin<br />
</font><br />
Instead of rewriting the applications, they rewrote the NeXTStep object lay=<br />
er, which they laid on top of <b>Unix code</b> and glued together with X Wi=<br />
ndow. Presto! A more open OpenStep than OpenStep. Whatever will be will BeO=<br />
S <b>&#8230;</b><br />
<font><br />
<a><br />
Ramblings - http://ramblings.ninebean.com/</a></font><br />
</font></td>
</tr>
<tr>
<td>
<a><br />
Binary File, Array Scripting Secrets</a><br />
<font><br />
Benchmarking with the Xdebug Extension (2009-02-18) &middot; Adding Methods=<br />
 to Custom Class Objects in VBScript (2009-02-26) &middot; Custom Class Obj=<br />
ects in VBScript (2009-02-23) &middot; <b>UNIX</b> File Systems (2009-02-23=<br />
) <b>&#8230;</b> <b>CODE</b> EXAMPLES ARTICLES <b>&#8230;</b><br />
<font><br />
<a><br />
ASP Help, ASP Tutorials, ASP&#8230; - http://www.aspfree.com/</a></font><br />
</font></td>
</tr>
</table>
<p><hr noshade size="3D1"><font><br />
</font>
<p><font><br />
ate</a> another alert.<br />
e</a> your alerts.<br />
</font></p>
</div>
<p>.</p>
]]></content:encoded>
			<wfw:commentRss>http://unix.coding-school.com/unix-code-2009-03-25-182053/feed/</wfw:commentRss>
		<feedburner:origLink>http://unix.coding-school.com/unix-code-2009-03-25-182053/</feedburner:origLink></item>
	</channel>
</rss>
