全部博文(2759)
发布时间:2013-04-14 11:52:46
1. 以二进制模式打开文件 # vi -b file比如文件内容原来为 hello world !2. 切换到二进制显示,在vi命令模式下输入 :%!xxd000000: 6865 6c6c 6f20 776f 726c 6420 210a hello world !.4. 如果要修改某个字节,对照右边的部分,改左边的字符,比如要将 w字符改为x,w对应的.........【阅读全文】
发布时间:2013-04-14 11:48:20
昨天晚上终于把论坛上那个16本Python书的帖子里的书下载完了,发现有好几本书名前都有一个 [搬书匠#123] 这样格式的前缀,而且有几个文档还莫名其妙的有运行权限,于是我决定写个脚本清理一下,其实是套用一下之前的一个脚本(把1.abc.mp3改成01.mp3以自动排序):点击(此处)折叠或打开#!/bi.........【阅读全文】
发布时间:2013-03-25 03:10:28
#!/bin/bash#$0: bash file name with path#$?: last cmd state after execute#$*: all the param in form "param1param2pram3......"#$@: all the param in form "param1""param2""param3""......"#$#: param number#$n: n corresponding t.........【阅读全文】