ChinaUnix.net
相关文章推荐:

vim 101 hacks

本帖最后由 L_kernel 于 2012-05-29 09:02 编辑 更新的资源在这里。 http://download.csdn.net/detail/jiaoxiaogu/4273542 这里也给大家来一份。

by L_kernel - 下载共享 - 2012-08-07 10:44:23 阅读(9323) 回复(17)

相关讨论

请问谁有这本书吗?给大家分享下啊,在网上找了个遍都没找到啊 :dizzy:

by cool2888 - 下载共享 - 2012-02-09 00:30:40 阅读(3178) 回复(2)

Linux 101 hacks http://www.thegeekstuff.com/ 1. function mkdircd () { mkdir -p "$@" && eval cd "\"\$$#\""; } 2. # pushd . # popd 3. Use “shopt -s cdspell” to automatically correct mistyped directory names on cd 4. # date {mmddhhmiyyyy.ss} # date 013122192009.53 # date +%Y%m%d -s "20090131" # date -s "01/31/2009 22:19:53" # date -s "31 JAN 2009 22:19:53" # date set="31...

by etony - Linux文档专区 - 2009-02-17 17:53:01 阅读(498) 回复(0)

Linux 101 hacks http://www.thegeekstuff.com/ 1. function mkdircd () { mkdir -p "$@" && eval cd "\"\$$#\""; } 2. # pushd . # popd 3. Use “shopt -s cdspell” to automatically correct mistyped directory names on cd 4. # date {mmddhhmiyyyy.ss} # date 013122192009.53 # date +%Y%m%d -s "20090131" # date -s "01/31/2009 22:19:53" # date -s "31 JAN 2009 22:19:53" # date set="31...

by etony - Linux文档专区 - 2009-02-17 17:50:52 阅读(452) 回复(0)

本帖最后由 jiannma 于 2010-03-20 20:22 编辑 一本好书 不敢独享 奉献给大家 {:2_169:}

by jiannma - Linux系统管理 - 2010-03-22 16:13:33 阅读(1435) 回复(8)

都是跟ssh 在远程执行有关的,谁没有大虾知道怎么回事的。

by linuxboy823 - Shell - 2010-12-21 13:07:32 阅读(1274) 回复(2)
by lkk2003rty - Shell - 2011-12-18 02:00:20 阅读(4255) 回复(7)

刚发现个网址,个人觉得不错,给大家看看: :em03: :em03: http://www.dedoimedo.com/computers/linux-cool-hacks-more.html

by jiannma - Shell - 2010-03-24 20:35:57 阅读(1381) 回复(7)

Use CDPATH to define the base directory for cd commandIf you are frequently performing cd to subdirectories of a specific parent directory, you can set the CDPATH to the parent directory and perform cd to the subdirectories without giving the parent directory path as explained below. [ramesh@dev-db ~]# pwd /home/ramesh [ramesh@dev-db ~]# cd mail -bash: cd: mail: No such file or directory [Note:...

by marksman201 - Linux文档专区 - 2009-10-06 19:16:03 阅读(671) 回复(0)