`
文章列表
http://www.itshanghai.net/technology/2009/0209/article_238.html http://www.91linux.com/html/article/go/20070611/2695.html http://www.ibm.com/developerworks/cn/linux/l-proc.html proc文件系统是一个伪文件系统,它只存在内存当中,而不占用外存空间。它以文件系统的方式为访问系统内核数据的操作提供接口。用户和应用程序可以通过proc得到系统的信息,并可以改变内核的某些参数。 系统中当前运行的每一个进程都有对应的一个目 ...
num=1 while [ $num -le 3 ] do echo ${num} num=$(($num+1)) done shell的循环也有多种写法: http://bbs.linuxpk.com/thread-39584-1-1.html time for i in `seq 1000000`; do echo $i> /dev/null; done real 0m35.109s user 0m29.126s sys 0m5.436s time for i in {1 ...
http://blog.chinaunix.net/u3/91453/showart_1856489.html #!/bin/bash BegTime=`date -d "2010-07-25" +%s` EndTiem=`date -d "2010-08-05" +%s` Step=60*60*24 for ((i=BegTime; i < EndTiem; i = i + Step)) do echo $i|awk '{print strftime("%Y%m%d",$1)}' e ...

spool

set linesize 1000; set pagesize 0; set feedback off; set heading off; set tab off; set HEADS off; set echo off; set VERIFY OFF; set termout off; set space 0; set trimout on; set trimspool on; spool /home/xserver/name.txt; sql data; spool off; exit; 上面设置sqlplus打印的 ...
1、原文:读史的三个境界 发信站: 水木社区 (Wed Feb  3 14:14:08 2010), 站内 原文由 同人于野 于2007-09-14 发表于 西西河论坛春秋史话板块 原文地址 http://www.cchere.com/article/1251203 因为是几年前的文章,可能版里面转载过吧,版主觉得不合适就删了吧,要是觉得对大家有点启发就留下。    绝大多数人对于历史的爱好仅限于听故事图个热闹好看,拿评书和历史剧当历史,热衷于一吕二赵三典韦四关五马六张飞之类的演义八卦,这不叫读史。高级一点 的认为真实历史比小说有意思,比如说喜欢看二战史,对德军高级将领如数家珍,这也仅仅能 ...
http://space.itpub.net/14401924/viewspace-629583 SELECT * FROM DBA_TABLESPACES --记录各个表空间的详细信息 SELECT * FROM DBA_TABLESPACE_USAGE_METRICS --记录各个表空间的使用状况 SELECT * FROM DBA_DATA_FILES --记录各个数据文件的详细信息 SELECT * FROM DBA_SEGMENTS --记录各个段的详细信息, 与 DBA_TABLES,DBA_INDEXES,DBA_LOBS,DBA_PART_TABLES,DBA_PART ...
Linux的文本处理强啊 paste   file1   file2 原始文件 file1: aaaa bbbb cccc 原始文件 file2: 1111 2222 3333 合并后的文件 file3: aaaa 1111 bbbb 2222 cccc 3333 其它命令:        -d, --delimiters=LIST               reuse characters from LIST instead of TABs        -s, --serial               paste one file at a time instead ...
http://blog.chinaunix.net/u/25102/showart_194521.html 从两个表达式返回一个非 null 值。 语法 NVL(eExpression1, eExpression2) 参数 eExpression1, eExpression2 如果 eExpression1 的计算结果为 null 值,则 NVL( ) 返回 eExpression2。如果 eExpression1 的计算结果不是 null 值,则返回 eExpression1。eExpression1 和 eExpression2 可以是任意一种数据类型。如果 eExpressi ...
  libpcap是unix/linux平台下的网络数据包捕获函数包,   大多数网络监控软件都以它为基础。   Libpcap可以在绝大多数类unix平台下工作.   Libpcap应用程序框架   Libpcap提供了系统独立的用户级别网络数据包捕获接口,并 ...
运行regedit 到目录下 HKEY_CURRENT_USER\Software\Microsoft\CommandProcessor 新建一个名为AutoRun的字串,值为你想要的路径,如: --------------------------- 数值名称: AutoRun --------------------------- 数值数据: cd C:\Documents and Settings\long\桌面 --------------------------- cmd 字体: HKEY_CURRENT_USER\Console\%SystemRoot%_system32 ...
http://www.ibm.com/developerworks/cn/aix/library/au-unix-getopt.html http://hi.baidu.com/harite/blog/item/2ad9aaec43f87b3d2697913d.html #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <getopt.h> #include <string.h> struct Student { i ...
http://wudx.iteye.com/blog/422578 好东西得copy收藏。。。 因oracle应用程序及其工具toad、PLSQL Developer等的部署很多,动辙要安装几百兆的Oracle Client实在很烦。 Instant client小而够用。这里共享出自己的经验,供同行参考,如果能给你帮助,荣幸之至。 运行环境:windows XP sp3,新安装系统,从未安装过任何版本Oracle 1、下载Instant Client http://www.oracle.com/technology/software/tech/oci/instantclient/i ...
http://apps.hi.baidu.com/share/detail/7394380 Code::Blocks是一个跨平台的C++IDE,支持Windows、Linux、MacOSX。同时他还支持各种不同的编译器,如GNU/MinGW C/C++,VC++ 6.0/2003/2005/2008,Borland C++,Digital Mars等等各种不同的编译器。 经过14个组员长 ...
http://www.cppblog.com/zyzx/archive/2009/04/27/81226.html 大致的步骤是四步: 第一步,Eclipse及CDT的安装 第二步,MinGW及编译器的安装配置 第三步,wxWidget的下载及编译 第四步,Eclipse下有关wxWidget的配置 搞定wxWidget的配置、开始编写像样的 ...
#include <stdio.h> #include <string.h> int main(int argc, char *argv[]) { int num = 1024; char a[sizeof(int)] = {0}; memcpy(a, &num, sizeof(num)); int i = 0; for (; i < sizeof(num); ++i) { printf("a[%d]=%d \n", i, a[i] ...
Global site tag (gtag.js) - Google Analytics