<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	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:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>siyahsapka.org &#187; Uncategorized</title>
	<atom:link href="http://www.siyahsapka.org/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.siyahsapka.org</link>
	<description>Software Development &#38; Research Team</description>
	<lastBuildDate>Sat, 04 Feb 2012 10:41:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>bash lf/else karşılaştırma operatörleri</title>
		<link>http://www.siyahsapka.org/2011/10/17/bash-lfelse-karsilastirma-operatorleri/</link>
		<comments>http://www.siyahsapka.org/2011/10/17/bash-lfelse-karsilastirma-operatorleri/#comments</comments>
		<pubDate>Mon, 17 Oct 2011 08:22:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[shell scripting]]></category>

		<guid isPermaLink="false">http://www.siyahsapka.org/?p=952</guid>
		<description><![CDATA[#!/bin/sh # This is some secure program that uses security. VALID_PASSWORD="secret" #this is our password. echo "Please enter the password:" read PASSWORD if [ "$PASSWORD" == "$VALID_PASSWORD" ]; then echo "You have access!" else echo "ACCESS DENIED!" &#160; Karşılaştırma: -eq equal to -ne not equal to -lt less than -le less than or equal to [...]]]></description>
			<content:encoded><![CDATA[<pre>#!/bin/sh
# This is some secure program that uses security.

VALID_PASSWORD="secret" #this is our password.

echo "Please enter the password:"
read PASSWORD

if [ "$PASSWORD" == "$VALID_PASSWORD" ]; then
	echo "You have access!"
else
	echo "ACCESS DENIED!"</pre>
<p>&nbsp;</p>
<p><strong>Karşılaştırma:</strong></p>
<table border="1">
<tbody>
<tr>
<td><strong>-eq</strong></td>
<td>equal to</td>
</tr>
<tr>
<td><strong>-ne</strong></td>
<td>not equal to</td>
</tr>
<tr>
<td><strong>-lt</strong></td>
<td>less than</td>
</tr>
<tr>
<td><strong>-le</strong></td>
<td>less than or equal to</td>
</tr>
<tr>
<td><strong>-gt</strong></td>
<td>greater than</td>
</tr>
<tr>
<td><strong>-ge</strong></td>
<td>greater than or equal to</td>
</tr>
</tbody>
</table>
<p><strong>Dosya işlemleri:</strong></p>
<table border="1">
<tbody>
<tr>
<td><strong>-s</strong></td>
<td>file exists and is not empty</td>
</tr>
<tr>
<td><strong>-f</strong></td>
<td>file exists and is not a directory</td>
</tr>
<tr>
<td><strong>-d</strong></td>
<td>directory exists</td>
</tr>
<tr>
<td><strong>-x</strong></td>
<td>file is executable</td>
</tr>
<tr>
<td><strong>-w</strong></td>
<td>file is writable</td>
</tr>
<tr>
<td><strong>-r</strong></td>
<td>file is readable</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.siyahsapka.org/2011/10/17/bash-lfelse-karsilastirma-operatorleri/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML 5 Demos and Examples</title>
		<link>http://www.siyahsapka.org/2011/02/10/html-5-demos-and-examples/</link>
		<comments>http://www.siyahsapka.org/2011/02/10/html-5-demos-and-examples/#comments</comments>
		<pubDate>Thu, 10 Feb 2011 07:34:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.siyahsapka.org/?p=652</guid>
		<description><![CDATA[http://html5demos.com/ http://introducinghtml5.com/ html5 mutlaka duymuşsunuzdur, kullanımı ile ilgili yukarıdaki bağlantılar ilginizi çekecektir.]]></description>
			<content:encoded><![CDATA[<p><a href="http://html5demos.com/">http://html5demos.com/</a></p>
<p><a href="http://introducinghtml5.com/">http://introducinghtml5.com/</a></p>
<p>html5 mutlaka duymuşsunuzdur, kullanımı ile ilgili yukarıdaki bağlantılar ilginizi çekecektir.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.siyahsapka.org/2011/02/10/html-5-demos-and-examples/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

