Ò׽ؽØÍ¼Èí¼þ¡¢µ¥Îļþ¡¢Ãâ°²×°¡¢´¿ÂÌÉ«¡¢½ö160KB

Linux Shell ±Ê¼Ç¶þ(Ñ­»·½á¹¹)

³ÌÐò12£ºÀàËÆjava ÀïÃæµÄswitch case
[root@localhost scripts]# cat sh12.sh
read -p "input comand:" command
case $command in
"fix")
echo "fix system"
;;
"fuck")
echo "fuck you"
;;
*)
echo "what a stupid man!ex>$0 some word"
esac
exit 0

³ÌÐò13£º¼òµ¥¼òµ¥£¬³¬¼¶¼òµ¥µÄÒ»¸öº¯Êý
[root@localhost scripts]# cat sh13.sh
function printit()
{
echo -n "Your choice is $1"
}
#$1Ϊ¿ØÖÆÌ¨ÊäÈëµÄµÚ¶þ¸ö²ÎÊý
printit 1;echo $1 | tr 'a-z' 'A-Z'

³ÌÐò14:until do done
[root@localhost scripts]# cat sh14.sh
until [ "$yn" = "yes" ] || [ "$yn" == "YES" ]
do
read -p "please input yes/to stop this program:" yn
done

³ÌÐò15£ºwhile do done
[root@localhost scripts]# cat sh15.sh
s=0
i=0
while [ "$i" != "100" ]
do
i=$(($i+1))
s=$(($s+$i))
done
echo "number of 1+2+3+...+100=$s"
³ÌÐò16£ºfor do done
[root@localhost scripts]# cat sh16.sh
s=0
for((i=1;i<=100;i=i+1))
do
s=$(($s+$i))
done
echo $s
exit 0

³ÌÐò17:for do done(2)
[root@localhost scripts]# cat sh17.sh
for animal in dog cat elephant
do
echo "there are ""$animal"
done
exit 0

³ÌÐò18£ºÀûÓà for do done²éÕÒijһ¸öĿ¼ÏÂÃæµÄÎļþȨÏÞÐÅÏ¢
[root@localhost scripts]# cat sh18.sh
read -p "input a directory:" dir
if [ "$dir" == "" ] || [ ! -d "$dir" ]; then
echo "The $dir is not exist in the system"
exit 1
fi
echo `ls $dir`
filelist=`ls $dir`
for filename in $filelist
do
perm="";
test -r "$dir/$filename" && perm="$perm readable"
test -w "$dir/$filename" && perm="$perm writable"
test -x "$dir/$filename" && perm="$perm execuatable"
echo "The file $dir/$filename's permission is $perm"
done


Ïà¹ØÎĵµ£º

LinuxÄÚºËÅäÖÃÎĵµ(make menuconfig)

Ò»¡¢ÒýÑÔ£º
    ±¾ÎĵµµÄÄÚÈݴ󲿷ÝÄÚÈݶ¼ÊÇ´ÓÍøÉÏÊÕ¼¯¶øÀ´£¬È»ºóÅäºÏһЩеĽØÍ¼£¨Äں˰汾£ºV2.4.19£©¡£ÔÚÿһÅäÖÃÏîºó»áÓÐÒ»¸öÑ¡ÔñÖ¸ÄϵIJ¿·Ý£¬ÓÃÀ´Ö¸µ¼´ó¼ÒÔõôÑù¸ù¾Ý×Ô¼ºµÄÇé¿öÀ´×öÏàÓ¦µÄÑ¡Ôñ£»»¹ÓÐÔÚÿһ¸ö´óÏîºÍÎĵµµÄ×îºó»áÓÐÒ»¸ö¾­Ñé̸£¬ËüÊÇһЩ¸ßÊÖÃÇÔÚÓ¦¶ÔÎÊÌâºÍ´¦ÀíÌØÓÐÓ²¼þʱµÄһЩ¾­Ñ飨Õâ¸ö»¹µ ......

(ת)LinuxϵÄCppUnit µÄHelloWorldÊÖ¼Ç

ת×Ô£ºhttp://blog.csdn.net/panyuequn/archive/2009/12/07/4958454.aspx
°æÈ¨ÉùÃ÷£º±¾ÎİæÈ¨ËùÊô Tx7do@ÉϺ£°ë¶¡£¬¿ÉÒÔËæÒâ¸´ÖÆ´«²¥£¬µ«ÊDZí°Ñ°æÈ¨¸øÈÓÀ²=¡£=
²Ù×÷ϵͳϵͳ£ºUbuntu6£¬g++
Èí¼þ°æ±¾£ºcppunit-1.10.2.tar.gz
£¨1£©»ñµÃÔ´Â룺
    µ½cppunit.sourceforge.netÉÏÏÂÔØÔ´´úÂë¡£½«Æä¸´ÖƵ½µ½l ......

linux²é¿´ÏµÍ³ÐÅÏ¢ÃüÁî´óÈ«£¨²»¶ÏÌí¼ÓÖÐ......£©

      # uname -a               # ²é¿´ÄÚºË/²Ù×÷ϵͳ/CPUÐÅÏ¢
¡¡¡¡# head -n 1 /etc/issue   # ²é¿´²Ù×÷ϵͳ°æ±¾
¡¡¡¡# cat /proc/cpuinfo      # ²é¿´CPUÐÅÏ¢
¡¡¡¡# hostname&nb ......

Linux¹Ø»úÃüÁî

1 shutdown:
[NAME
]  shutdown - bring the system down
SYNOPSIS
       /sbin/shutdown [-t sec] [-arkhncfF] time [warning-message]
DESCRIPTION
       shutdown  brings  the  system  down  in a secure way.&nb ......

¹ØÓÚLINUXÖеÄFORKº¯Êý

Ò»Ö±ÏëдµãLINUXÖеÄFORKº¯Êý,µ«ÊǰÉ,ÎÒʵÔÚÊÇÌ«ÀÁÁË,ÔÙ¼ÓÉÏÎIJɲ»ÔõôºÃ,ËùÒԾʹÓÍøÉÏÕÒÁËÆªÐ´µÄ²»´íµÄÎÄÕÂ,¿´ÍêÖ®ºóÓ¦¸Ã¶ÔFORKº¯ÊýÓÐÒ»¶¨µÄÁ˽â~~
 
¸ø³öÈçÏÂC³ÌÐò£¬ÔÚlinuxÏÂʹÓÃgcc±àÒ룺
1 #include "stdio.h"
2 #include "sys/types.h"
3 #include "unistd.h"

5  int  main()
6 ......
© 2009 ej38.com All Rights Reserved. ¹ØÓÚE½¡ÍøÁªÏµÎÒÃÇ | Õ¾µãµØÍ¼ | ¸ÓICP±¸09004571ºÅ