上一页 1 ··· 111 112 113 114 115 116 117 118 119 ··· 132 下一页
摘要: for file in $1/* do if [ -f $file ] then SUFFIX=${file#*BK} PREFIX=${SUFFIX%%_*} CURRENT=`date -d -7day +%Y%m%d` if [[ $CURRENT... 阅读全文
posted @ 2017-10-18 12:02 kakaisgood 阅读(570) 评论(0) 推荐(0) 编辑
摘要: Step 1: Go to Help -> Install New Software -> click on 'Add' Step 2: On pop-up fill these below details: Name: JavaDecompiler Location: http://jd.beno 阅读全文
posted @ 2017-10-18 11:37 kakaisgood 阅读(118) 评论(0) 推荐(0) 编辑
摘要: The operation cannot be rolled back. DROP and TRUNCATE are DDL commands, whereas DELETE is a DML command. Therefore DELETE operations can be rolled ba 阅读全文
posted @ 2017-10-18 11:23 kakaisgood 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 网上很多使用的是getProperties。说获得系统变量,但是其实不正确。getProperties中所谓的"system properties"其实是指"java system",而非"operation system",概念完全不同,使用getProperties获得的其实是虚拟机的变量形如: 阅读全文
posted @ 2017-10-18 11:15 kakaisgood 阅读(269) 评论(0) 推荐(0) 编辑
摘要: Linux sed 高级用法实例 Linux 中,sed 可以实现替换或者插入等功能,用法简单归纳一下。注意:本文所有写法都是正确的,不存在错误写法。 1,要替换一些文字时,用”/”把各部分隔开; sed -i 's/原内容/新内容/g' 文件 注意:原内容可以是一整行,也可以是一行中的某一段。 2 阅读全文
posted @ 2017-10-17 15:32 kakaisgood 阅读(183) 评论(0) 推荐(0) 编辑
摘要: I have two processes foo and bar, connected with a pipe: bar always exits 0; I'm interested in the exit code of foo. Is there any way to get at it? -- 阅读全文
posted @ 2017-10-17 15:27 kakaisgood 阅读(365) 评论(0) 推荐(0) 编辑
摘要: 2,把目录 /tmp/sco修改为可写可读可执行 chmod 777 /tmp/sco 要修改某目录下所有的文件夹属性为可写可读可执行 chmod 777 * 把文件夹名称用*来代替就可以了 要修改/tmp/sco下所有的文件和文件夹及其子文件夹属性为可写可读可执行 chmod -R 777 /tm 阅读全文
posted @ 2017-10-17 15:25 kakaisgood 阅读(229) 评论(0) 推荐(0) 编辑
摘要: n cross-platform, lowest-common-denominator sh you use: In bash or zsh, to read a whole file into a variable without invoking cat: 阅读全文
posted @ 2017-10-17 15:18 kakaisgood 阅读(319) 评论(0) 推荐(0) 编辑
摘要: Linux统计文件行数 2011-07-17 17:32 by 依水间, 168255 阅读, 4 评论, 收藏, 编辑 语法:wc [选项] 文件… 说明:该命令统计给定文件中的字节数、字数、行数。如果没有给出文件名,则从标准输入读取。wc同时也给出所有指定文件的总统计数。字是由空格字符区分开的最 阅读全文
posted @ 2017-10-17 15:17 kakaisgood 阅读(259) 评论(0) 推荐(0) 编辑
摘要: ls命令是linux下最常用的命令。ls命令就是list的缩写缺省下ls用来打印出当前目录的清单如果ls指定其他目录那么就会显示指定目录里的文件及文件夹清单。 通过ls 命令不仅可以查看linux文件夹包含的文件而且可以查看文件权限(包括目录、文件夹、文件权限)查看目录信息等等。ls 命令 阅读全文
posted @ 2017-10-17 15:16 kakaisgood 阅读(229) 评论(0) 推荐(0) 编辑
上一页 1 ··· 111 112 113 114 115 116 117 118 119 ··· 132 下一页