码迷,mamicode.com
首页 >  
搜索关键字:proc    ( 8879个结果
刘璁_mel
nanoblock_mel();global proc nanoblock_mel(){if (`window -q -ex createNanoblockUI`)deleteUI createNanoblockUI; window -t "Nanoblock_工具" -w 200 -h 30...
分类:其他好文   时间:2014-11-16 15:54:57    阅读次数:201
测试网卡流量shell脚本
#!/bin/bashfunctionusage{echo"use./test_net.shethXtime"echo"$1isyounetworkinterface"echo"$2isthelasttime!"echo"forexample:./test_net.sheth02"exit100}if[$#-lt2-o$#-gt2];thenusagefieth=$1time=$2old_inbw=`cat/proc/net/dev|grep$eth|awk-F‘[:]+‘‘{print$3}‘`old_ou..
分类:系统相关   时间:2014-11-16 02:02:18    阅读次数:277
数据库(十一)
--根据学生选课题目写一个存储过程,输入教师编号--判断所教学生的及格率,80分及格,如果及格率超过--50%,职称上升一级,否则降一级alter proc pingji@tno varchar(20)asbegin declare @cno varchar(20) select @cno=cno ...
分类:数据库   时间:2014-11-15 13:58:58    阅读次数:207
linux系统目录结构
系统目录:==============/bin:系统命令目录/dev:设备目录/home:用户的主目录/lib:系统库目录 .so动态库 .a 静态库/media:多媒体目录/mnt:挂载目录/proc:内存目录/sbin:超级用户命令目录 -->只用root用户才能使用/tmp:临时文件目录/va...
分类:系统相关   时间:2014-11-15 11:24:23    阅读次数:161
sas中的sql(5) 纵向操作数据集 Except、Intersect、Union、OuterJoin
SQL进行纵向操作的基本语法proc sql;select *from table1set-operator select *from table2set-operator select *from table3;1:几种set操作符Except、Intersect、Union、OuterJoi.....
分类:数据库   时间:2014-11-15 00:05:33    阅读次数:739
sas中的sql(3) 标签,格式化输出,子查询,大于两张表的联合查询(暂缺)
1.1:Specifying Column Formats and Labels (SAS enhancements.)proc sql outobs=15; title 'Current Bonus Information'; title2 'Employees with Sa...
分类:数据库   时间:2014-11-14 20:54:10    阅读次数:429
查看cpu个数及核数、硬盘、内存信息及各个软件的版本
#cat/proc/cpuinfo|grep"physicalid"|sort|uniqphysicalid:0physicalid:1#cat/proc/cpuinfo|grep"physicalid"|grep"0"|wc-l4说明该服务器是有2个cpu每个cpu是4核查看nginx版本#cd/usr/local/nginx/sbin/以自己的nginx安装目录为准#./nginx-v查看硬盘分区情况#df-lh查看服务器硬..
分类:其他好文   时间:2014-11-14 18:06:51    阅读次数:181
sql-删除无效sql链接
create proc dtLink(@dbName varchar(50) --数据库名称)as--查询临时表是否存在if(OBJECT_ID('temp..db') is not null)begin drop table #TempTableend--创建临时表create table ...
分类:数据库   时间:2014-11-14 14:14:59    阅读次数:132
delphi winio 输入
var key:byte;//ASCII码 btScancode:DWord; //键码begin key:=VkKeyScan('b'); btScancode:= MapVirtualKey(key, 0);end;//winio模拟,大小写需要自己模拟shift键盘自己转化。proc...
分类:Windows程序   时间:2014-11-14 10:27:38    阅读次数:337
CentOS 命令【备忘】
1、查看物理cpu个数grep 'physical id' /proc/cpuinfo | sort -u | wc -l2、查看核心数量grep 'core id' /proc/cpuinfo | sort -u | wc -l3、查看目录大小du -hs /usr/local/openresty...
分类:其他好文   时间:2014-11-14 09:12:30    阅读次数:195
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!