摘要: 转自http://www.cnblogs.com/tianyajuanke/p/3359100.html 一、简介: gcc 最初是 "GNU C Compiler" 的简称,只是当作一个 C 语言的编译器,现在已经变成了 "GNU Compiler Collection",可以编译多种语言。 二、 阅读全文
posted @ 2017-11-03 16:32 白鸟li 阅读(356) 评论(0) 推荐(0) 编辑
摘要: spool abc.txt; #将结果输出为abc.txtselect * from wap_subscribe where Telcomcompanyid = '20200' and (Orderdate like '2005%' or Disorderdate like '2005%');spo 阅读全文
posted @ 2017-05-04 13:27 白鸟li 阅读(377) 评论(0) 推荐(0) 编辑
摘要: ^a 以a 为开头 [^a] 非a apple(|\t+)pear 中间出现一次以上空格,制表符或者两者混合的字符串 apple(+|\t+)pear 中间的分隔符全是空格或者全部制表符 (apple|pear) [a|b] [ab] 只匹配字符集中列出的任何一个 [^def] 匹配这三个字符以为的 阅读全文
posted @ 2017-04-26 14:22 白鸟li 阅读(1180) 评论(0) 推荐(0) 编辑
摘要: 根据文件内容递归查找目录 阅读全文
posted @ 2017-04-25 13:23 白鸟li 阅读(159) 评论(0) 推荐(0) 编辑
摘要: http://www.w3school.com.cn/sql/sql_wildcards.asp 在搜索数据库中的数据时,SQL 通配符可以替代一个或多个字符。 SQL 通配符必须与 LIKE 运算符一起使用。 在 SQL 中,可使用以下通配符: [^charlist] 或者 [!charlist] 阅读全文
posted @ 2017-04-25 09:51 白鸟li 阅读(136) 评论(0) 推荐(0) 编辑
摘要: # gunzip test.txt.gz 它会将文件解压缩为文件 test.txt,原来的文件则没有了,为了保留原有的文件,我们可以加上 -c 选项并利用 linux 的重定向 # gzip -c test.txt > /root/test.gz 这样不但可以将原有的文件保留,而且可以将压缩包放到任 阅读全文
posted @ 2017-04-24 13:26 白鸟li 阅读(132) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/ggjucheng/archive/2012/08/18/2645321.html 阅读全文
posted @ 2017-04-19 17:29 白鸟li 阅读(105) 评论(0) 推荐(0) 编辑
摘要: awk [-F|-f|-v] ‘BEGIN{} //{command1; command2} END{}’ file 匹配 input file R00,R01,R02,R03 output file a:R00,R01 output file b:R02,R03 awk -F, 'BEGIN{OF 阅读全文
posted @ 2017-04-19 17:27 白鸟li 阅读(153) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/zwan0518/article/details/12059213 阅读全文
posted @ 2017-04-14 16:27 白鸟li 阅读(162) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/Jmilk/article/details/51569290 查询当前数据名 SQL> select name from v$database; NAME DP_SWEDN 数据库实例名用于Oracle与OS之间的联系和用于Oracle Server与外部连 阅读全文
posted @ 2017-04-11 15:17 白鸟li 阅读(167) 评论(0) 推荐(0) 编辑