研究目的:
* tab自动补全的原理和代码实现
* 提高日常工作水平
日常工作中,tab自动补全是非常好用的特性。在ubuntu下的bash中相关代码如下:
* /etc/prof
->more...
05-10 09:26
by
草色青青Caory
latest change
about 19 hours
Dash as /bin/sh
In Ubuntu 6.10, the default system shell, /bin/sh, was changed to dash (the Debia
->more...
05-18 21:55
by
草色青青Caory
from
wiki.ubuntu.com
如今Debian和Ubuntu中,/bin/sh默认已经指向dash,这是一个不同于bash的shell,它主要是为了执行脚本而出现,而不是交互,它速度更快,但功能相比bash要少很多,语法严格遵守P
->more...
05-18 21:46
by
草色青青Caory
from
igigo.net
latest change
about 20 hours
bash vs. dash - 2008-JP_bash_vs_dash.pdf
05-18 21:39
by
草色青青Caory
from
princessleia.com
This text is a brief description of the features that are present in the Bash shell (version 4.2, 28
->more...
04-25 06:13
by
草色青青Caory
from
gnu.org
latest change
about 20 hours
Remotely administering machines graphically, with VNC
05-18 20:25
by
草色青青Caory
from
debian-administration.org
An introduction to bash completion: part 1
05-18 20:10
by
草色青青Caory
from
debian-administration.org
使用bash_completion进行个性化补全 | GNUer's blog
05-18 20:02
by
草色青青Caory
from
blog.gnuers.org
bash completion for rails
05-18 18:25
by
草色青青Caory
from
github.com
==遇到的几个问题
2 - Name: [ ruby-2.0.0 ]
* version number 要求数字开始
sudo checkinstall --pkgversi
->more...
05-17 11:31
by
草色青青Caory
latest change
2 days
install ruby 2.0.0-p0 on ubuntu
05-17 09:16
by
草色青青Caory
from
gist.github.com
1、说明
split [-bl] file PREFIX
2、option
参数:
-b:后面可接欲分割成的档案大小,可加单位,例如 b, k, m 等;
-l:以行数来
->more...
05-16 12:01
by
草色青青Caory
from
cnblogs.com
split [-bl] file PREFIX
==分隔大文件
split -l 10000 development.log dev
split -b 10k development.l
->more...
05-16 11:56
by
草色青青Caory
latest change
3 days
way1: `"12345665458745".reverse.chars.to_a.in_groups_of(3).map{|m| m.join}.join(",").reverse`
w
->more...
05-14 17:58
by
草色青青Caory