Chinaunix首页 | 论坛 | 博客
  • 博客访问: 898415
  • 博文数量: 194
  • 博客积分: 7991
  • 博客等级: 少将
  • 技术积分: 2067
  • 用 户 组: 普通用户
  • 注册时间: 2007-12-09 22:03
文章分类

全部博文(194)

文章存档

2010年(8)

2009年(71)

2008年(109)

2007年(6)

我的朋友

分类: LINUX

2009-05-11 09:18:02

Standard completion
bash has offered many forms of completion since its inception, including path, file, user, host and variable completion.
 
Path-name completion
This type of completion occurs on the first token of the command line, allowing you to complete on executable files. Together with file-name completion, it is the most known and used type.
 
File-name completion
This allows you to complete on file and directory names at the second and subsequent token position on the command line.
 
User-name completion
This allows you to complete on user names by prefixing the token with a ~ (tilde).
 
Host-name completion
This allows you to complete on host names by prefixing the token with a @.
 
Variable-name completion
This allows you to complete on variable names by prefixing the token with a $.
 
 
And now, bash-completion indefinitely extends the type of completion you can perform.
 
See to address  for additional information.
 
阅读(1285) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~