随笔分类 -  shell

上一页 1 ··· 3 4 5 6 7 8 9 10 下一页
摘要:例子 例子 例子 例子 阅读全文
posted @ 2019-04-23 23:55 anobscureretreat 阅读(228) 评论(0) 推荐(0) 编辑
摘要:test.py: test.sh: 输出: 阅读全文
posted @ 2019-04-23 23:53 anobscureretreat 阅读(343) 评论(0) 推荐(0) 编辑
摘要:2>&1的意思就是将标准错误也输出到标准输出当中. 阅读全文
posted @ 2019-04-23 23:50 anobscureretreat 阅读(219) 评论(0) 推荐(0) 编辑
摘要:>/dev/null 2>&1,将标准输出和错误输出到输入至/dev/null 阅读全文
posted @ 2019-04-23 23:50 anobscureretreat 阅读(103) 评论(0) 推荐(0) 编辑
摘要:unix 只用\n作为行结束符,而在 dos中是以\r和\n作为行结束符, 如果一个文件是在unix系统下创建,然后想在dos下使用,就要用unix2dos,如 如果一个文件是在dos下创建的,然后想在unix下使用,就要用dos2unix,如 阅读全文
posted @ 2019-01-08 00:21 anobscureretreat 阅读(149) 评论(0) 推荐(0) 编辑
摘要:查看 阅读全文
posted @ 2019-01-04 12:40 anobscureretreat 阅读(1285) 评论(0) 推荐(0) 编辑
摘要:举例说明: 要将目录logs打包压缩并分割成多个100M的文件,可以用下面的命令: tar cjf - logs/ |split -b 100m - logs.tar.bz2. 完成后会产生下列文件: logs.tar.bz2.aa, logs.tar.bz2.ab, logs.tar.bz2.ac 要解压的时候只要执行下面的命令就可以了: cat logs.tar.bz2.a* | tar... 阅读全文
posted @ 2019-01-02 16:49 anobscureretreat 阅读(479) 评论(0) 推荐(0) 编辑
摘要:如:hello world文件 第一种方式 第二种方式 阅读全文
posted @ 2019-01-02 16:30 anobscureretreat 阅读(448) 评论(0) 推荐(0) 编辑
摘要:[root@bogon ~]# stat -c%s install.log 26593 阅读全文
posted @ 2018-12-27 12:24 anobscureretreat 阅读(256) 评论(0) 推荐(0) 编辑
摘要:将文本的行限制到特定的宽 这个用 echo 命令发送的文本用 -w 选项分解成块。 在这个例子中,我们设定了行宽为12个字符。 如果没有字符设置,默认是80。 增加的 -s 选项将让 fold 分解到最后可用的空白 字符,即会考虑单词边界。 例子 输出 例子 输出 阅读全文
posted @ 2018-12-14 17:06 anobscureretreat 阅读(414) 评论(0) 推荐(0) 编辑
摘要:能ping通返回1,不能返回0 阅读全文
posted @ 2018-12-09 20:12 anobscureretreat 阅读(742) 评论(0) 推荐(0) 编辑
摘要:test.sh 输出 阅读全文
posted @ 2018-12-07 23:58 anobscureretreat 阅读(694) 评论(0) 推荐(0) 编辑
摘要:test.sh 执行 输出 阅读全文
posted @ 2018-12-07 23:48 anobscureretreat 阅读(1700) 评论(0) 推荐(0) 编辑
摘要:test.sh 执行 输出 执行 输出 阅读全文
posted @ 2018-12-07 23:38 anobscureretreat 阅读(2391) 评论(0) 推荐(0) 编辑
摘要:test.sh 执行 输出 执行 输出 阅读全文
posted @ 2018-12-07 23:33 anobscureretreat 阅读(896) 评论(0) 推荐(0) 编辑
摘要:创建一个文件和一个文件夹 test.sh 执行 输出 执行 输出 阅读全文
posted @ 2018-12-07 23:22 anobscureretreat 阅读(4965) 评论(0) 推荐(0) 编辑
摘要:#!/bin/bashecho "enter the name:"read filenameif test -x $filename ; then./$filenameelsesudo chmod +x $filenamels -l $filenamefi //sss.sh 运行 输出: 再次运行 阅读全文
posted @ 2018-12-07 23:13 anobscureretreat 阅读(4850) 评论(0) 推荐(0) 编辑
摘要:没有该文件则创建,有则 ls -l 输出文件信息。 输出 阅读全文
posted @ 2018-12-07 23:00 anobscureretreat 阅读(2951) 评论(0) 推荐(0) 编辑
摘要:输出 阅读全文
posted @ 2018-12-07 15:56 anobscureretreat 阅读(128) 评论(0) 推荐(0) 编辑
摘要:输出: 阅读全文
posted @ 2018-12-07 15:52 anobscureretreat 阅读(291) 评论(0) 推荐(0) 编辑

上一页 1 ··· 3 4 5 6 7 8 9 10 下一页