Posted on 17-10-2011
Filed Under (Uncategorized) by admin
#!/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!"

 

Karşılaştırma:

-eq equal to
-ne not equal to
-lt less than
-le less than or equal to
-gt greater than
-ge greater than or equal to

Dosya işlemleri:

-s file exists and is not empty
-f file exists and is not a directory
-d directory exists
-x file is executable
-w file is writable
-r file is readable
(0) Comments    Read More   
Posted on 10-02-2011
Filed Under (Javascript, Uncategorized, Web) by admin

http://html5demos.com/

http://introducinghtml5.com/

html5 mutlaka duymuşsunuzdur, kullanımı ile ilgili yukarıdaki bağlantılar ilginizi çekecektir.

(0) Comments    Read More