发布时间:2013-09-15 22:06:59
你可以用“cd -”在最近访问的两个目录之间进行切换,如下所示: # cd /tmp/very/long/directory/structure/that/is/too/deep # cd /tmp/subdir1/subdir2/subdir3 # cd - # pwd /tmp/very/long/directory/structure/that/is/too/deep# cd - # pwd /tmp/subdir1/subdir2/subdir3 # cd - # pwd.........【阅读全文】
发布时间:2013-09-14 00:00:48
技巧3:用一条语句执行―mkdir‖和―cd‖命令有时候当你需要新建一个目录后,希望马上进入到这个目录中去(cd),你可以按照下面的方法去做。 # mkdir -p /tmp/subdir1/subdir2/subdir3 # cd /tmp/subdir1/subdir2/subdir3 # pwd /tmp/subdir1/subdir2/subdir3 如果将mkdir 和cd 操作在一个单独的命令中实现会不会很.........【阅读全文】
发布时间:2013-09-12 22:24:50
方法1、利用..(数字)来选择退回几集目录例子1、:# cd /tmp/very/long/directory/structure/that/is/too/deep # ..4 [Note: use ..4 to go up 4 directory level] #.........【阅读全文】
发布时间:2013-09-12 10:39:51
安装系统的时候如果选择了UTC的话,可以这么做进行尝试奥。 禁止系统时间设为UTC编辑 /etc/default/rcS# Default settings for the scripts in /etc/rcS.d/## For information about these variables see the rcS(5) manual page.## This file belongs to the "initscripts" package.T.........【阅读全文】