Linux Bash Bash 实例,第一部分 Bourne again shell (bash) 基本编程http://www.ibm.com/developerworks/cn/linux/shell/bash/bash-1/index.shtmlBash 实例,第二部分更多的 bash 基本编程http://www.ibm.com/developerworks/cn/linux/she
variadic function In computer programming, a variadic function is a function of indefinite arity, i.e., one which accepts a variable number of arguments. Support for variadic functions differs widely among programming
ubuntu: ssh service Install sshsudo apt-get install openssh-servercheck openssh-server statusps -e | grep sshshould list out the ssh-agent and sshdstart/stop/restart sshsudo /etc/init.d ssh start/stop
ftp service for ubuntu Install the vsftpd:sudo apt-get install vsftpdCheck the vsftpd service running status:ps -e | grep vsftpdvsftpd configrations:sudo gedit /etc/vsftpd.conflisten=YES # 服务器监听a
mysql reference URL: http://wiki.ubuntu.org.cn/MySQLinstallationsudo apt-get install mysql-serverstart/stop/restartsudo start mysql OR sudo /etc/init.d/mysql startsudo stop mysqlinstall
apache httpd 安装sudo apt-get install apache2-httpd启动/停止/重启sudo /etc/init.d/apache2 startsudo /etc/init.d/apache2 stopsudo /etc/init.d/apache2 restart配置
C++ Programming Basic acknowledge __cdecl__cdecl 是C Declaration的缩写(declaration,声明),表示C语言默认的函数调用方法:所有参数从右到左依次入栈,这些参数由调用者清除,称为手动清栈。被调用函数不会要求调用者传递多少参数,调用者传递过多或者过少的参数,甚至完全不同的参数都不会产生编译阶段的错误。