(一)网络相关1、 查看某一个端口: netstat -lnp|grep 802、查看占用端口: netstat -lnp 或者 netstat -tnlup(二)软件相关1、安装了多少个软件包: rpm-qa|wc-l yum list installed | wc -l2、安装了哪些: r...
分类:
其他好文 时间:
2014-07-16 23:19:40
阅读次数:
175
服务器上的一些统计数据:1)统计80端口连接数netstat -nat|grep -i "80"|wc -l2)统计httpd协议连接数ps -ef|grep httpd|wc -l3)、统计已连接上的,状态为“establishednetstat -na|grep ESTABLISHED|wc -...
分类:
其他好文 时间:
2014-07-10 13:05:18
阅读次数:
164
1.统计ios开发代码,包括头文件的,终端命令进入项目目录下,命令如下find . -name "*.m" -or -name "*.h" -or -name "*.xib" -or -name "*.c" |xargs wc -l 列出每个文件的行数find . -name "*.m" -or -...
分类:
其他好文 时间:
2014-07-07 20:19:15
阅读次数:
254
我们先看一个关于Javascript利用循环绑定事件的例子:例如:一个不确定长度的列表,在鼠标经过某一条的时候改变背景。﹤!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml...
分类:
Web程序 时间:
2014-06-27 19:37:49
阅读次数:
311
Glossary of view transformationsThe following terms are used to define view orientation, i.e. transformation from World Coordinates (WC) to the View R...
分类:
其他好文 时间:
2014-06-27 18:23:59
阅读次数:
240
1 protected void btn_Down(object sender, EventArgs e) 2 { 3 string filePath = Server.MapPath("/TradeLog/" + txtDate.Text.Tr...
分类:
Web程序 时间:
2014-06-27 17:02:31
阅读次数:
226
增强基本选择器[selector_3.html] $("ul li:first") $("ul li:last") $("table tr:even") $("table tr:odd") $("table tr:eq(0)") $("table tr:gt(0)") $(...
分类:
Web程序 时间:
2014-06-26 16:45:45
阅读次数:
175
$("table tr:hidden") $("table tr:visible") 1 2 3 4 5 6 7 8 9 Value 110 11 12 Value 21...
分类:
其他好文 时间:
2014-06-26 16:31:56
阅读次数:
204
自己学习《APUE》时写的linux下一些命令(大概40个左右)实现,仅当学习使用,这些命令包括cat cp echo head ls paste rmdir tail umask who chattr cut expand join mkdir pwd sed tee uniq chgrp date find last mkfifo reboot sort wc chmod df ln mv rename split touch which chown du grep lsattr od rm tac t...
分类:
编程语言 时间:
2014-06-26 10:51:39
阅读次数:
423
监控服务器剩余空间脚本:#visize.sh按a或i进入编辑模式#!/bin/bashName=`hostname`Date=`date+%m%d%y`Size=`/bin/df-h/home|grepT|awk-F[:""]+‘{print$5}‘`Size2=`/bin/df-h/home|grepT|awk-F[:""]+‘{print$5}‘|tr-d‘%‘`Size3=`/bin/df-h/home|grepT|awk-F[:""]+‘{print$4}‘`i..
分类:
其他好文 时间:
2014-06-26 06:14:02
阅读次数:
303