码迷,mamicode.com
首页 >  
搜索关键字:echo    ( 13483个结果
使用shell脚本实现加法乘法运算
编写一个shell脚本,实现加法和乘法运算。#!/bin/bash#Function:num1+num2num3*num4sum(){read-p"pleasekeyinfirstnumber:"num1read-p"pleasekeyinsecondnumber:"num2letnum3=${num1}+${num2}echo-e"\033[32m$num1+$num2=$num3\033[0m"}#############cf(){read-p"pleasekeyinfi..
分类:其他好文   时间:2014-05-27 03:28:19    阅读次数:219
bash里,echo对换行符的处理
echo -e "#include \nint main()\n{\n printf(\"hello world\\\n\");\n return 0;\n}" > h.c; gcc h.c; ./a.outh.c里的内容#include int main(){ printf("h...
分类:其他好文   时间:2014-05-24 07:34:05    阅读次数:213
Linux Shell 网络层监控脚本(监控包括:连接数、句柄数及根据监控反馈结果分析)
脚本监控:获取最大句柄数的进程:链接分析:脚本片段: case "$handle" in 2) echo "The handle of the process : " echo " " handle | awk...
分类:系统相关   时间:2014-05-24 03:05:11    阅读次数:420
PHP分页
$pagesize){if($pagevel上一页"."下一页";}$sql="select*frommessagelimit$page,$pagesize";$query=mysql_query($sql);while($row=mysql_fetch_array($query)){echo""....
分类:Web程序   时间:2014-05-24 02:34:28    阅读次数:393
在任务计划程序用Bat命令执行exe程序
@echo off:openchoice /c:123 /m "1:创建,2:终止,3:删除"if errorlevel 3 goto deleteif errorlevel 2 goto endif errorlevel 1 goto create:create@schtasks /create ...
分类:其他好文   时间:2014-05-24 00:59:01    阅读次数:306
批处理--执行sql(mysql数据库)
@echo offrem test.sql文件for %%i in (test.sql) do ( echo excute %%i mysql -u用户名 -p密码 -D数据库名 < %%i)echo successpause
分类:数据库   时间:2014-05-23 23:59:32    阅读次数:569
EventMachine 系列之简单的服务器
EventMachine 本文主要是 EventMachine如何建一个简单的Echo服务器post_init, unbind, receive_date 方法 EchoServer 如下代码,是建立一个简单的EchoServer #!/usr/bin/env rubyrequire 'rubygems'require 'eventmachine' class Ech...
分类:其他好文   时间:2014-05-22 11:14:26    阅读次数:181
大于2TB的硬盘在cacti 中的画图问题
系统centos6.5x64,用raid5加上6块4TB硬盘组成了个超级硬盘,总容量20TB,实际为18TB多但是cacti画图只能显示2.19TB。解决办法:echo"realStorageUnits0">>/etc/snmp/snmpd.conf servicesnmpdrestart
分类:其他好文   时间:2014-05-20 21:03:54    阅读次数:331
PHP (20140519)
关于php面向对象的基本代码: 1 name = $name;12 $this->pwd = $pwd;13 $this->age = $age;14 }15 16 public function intro(){17 18 echo ...
分类:Web程序   时间:2014-05-20 11:34:15    阅读次数:303
PHP语言基础简单整理
1.开始结束标记2.定义变量:$变量名例:$str="锦清笋";不需要指明数据类型3.输出语句:(1)echo"helloworld!";---echo命令(2)print();输出语句,是函数,有返回值。输出成功返回1,失败返回0。(3)printf();格式化输出字符串。例:printf("%d...
分类:Web程序   时间:2014-05-19 13:14:48    阅读次数:337
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!