为 bash 添加 auto_cd 功能:如果命令行是一个目录,则进入该目录

某同事喜用ZSH,ZSH有一个auto_cd选项,打开它之后,如果命令行是一个目录,则进入该目录。例如

.. 进入上层目录,/etc 进入/etc目录。这样省得敲"cd"了。

结合ZSH的auto_pushd功能,可以很方便地在最近使用的目录中跳来跳去。

BASH有pushd/popd/dirs,但用起来总不如ZSH那么便捷。我给BASH加上了这个auto_cd功能,用 shopt -s auto_cd 开启之后,和ZSH效果一样。源代码改动如下:

--- bash-3.2.orig/execute_cmd.c 2006-08-26 00:23:16.000000000 -0400
+++ bash-3.2/execute_cmd.c 2008-05-12 16:21:44.000000000 -0400
@@ -3641,11 +3641,32 @@
 
   command = search_for_command (pathname);
 
+  int no_symlinks = 0;
+  extern int auto_cd;
   if (command)
     {
+      if (auto_cd)
+        {
+          struct stat finfo;
+          if ((stat (command, &finfo) == 0) && (S_ISDIR (finfo.st_mode)))
+            {
+              if (change_to_directory (pathname, no_symlinks))
+                {
+                  bindpwd (no_symlinks);
+                  return;
+                }
+            }
+        }
+
       maybe_make_export_env ();
       put_command_name_into_env (command);
     }
+  else if (auto_cd && change_to_directory (pathname, no_symlinks))
+    {
+      bindpwd (no_symlinks);
+      return;
+    }
+
 
   /* We have to make the child before we check for the non-existence
      of COMMAND, since we want the error messages to be redirected. */

--- bash-3.2.orig/builtins/cd.def 2006-07-27 21:35:36.000000000 -0400
+++ bash-3.2/builtins/cd.def 2008-05-12 16:14:02.000000000 -0400
@@ -58,16 +58,18 @@
 extern int array_needs_making;
 extern char *bash_getcwd_errstr;
 
-static int bindpwd __P((int));
+int bindpwd __P((int));
 static void setpwd __P((char *));
 static char *resetpwd __P((char *));
-static int change_to_directory __P((char *, int));
+int change_to_directory __P((char *, int));
 
 static char *cdspell __P((char *));
 
 /* Change this to 1 to get cd spelling correction by default. */
 int cdspelling = 0;
 
+int auto_cd = 0;
+
 int cdable_vars;
 
 $BUILTIN cd
@@ -103,7 +105,7 @@
     }
 }
 
-static int
+int
 bindpwd (no_symlinks)
      int no_symlinks;
 {
@@ -395,7 +397,7 @@
    getcwd() will eventually be called), or set to a string corresponding
    to the working directory.  Return 1 on success, 0 on failure. */
 
-static int
+int
 change_to_directory (newdir, nolinks)
      char *newdir;
      int nolinks;

--- bash-3.2.orig/builtins/shopt.def 2005-02-19 17:25:02.000000000 -0500
+++ bash-3.2/builtins/shopt.def 2008-05-12 16:13:32.000000000 -0400
@@ -68,6 +68,7 @@
 extern int hup_on_exit;
 extern int xpg_echo;
 extern int gnu_error_format;
+extern int auto_cd;
 
 #if defined (EXTENDED_GLOB)
 extern int extended_glob;
@@ -114,6 +115,7 @@
   int  *value;
   shopt_set_func_t *set_func;
 } shopt_vars[] = {
+  { "auto_cd", &auto_cd, (shopt_set_func_t *)NULL },
   { "cdable_vars", &cdable_vars, (shopt_set_func_t *)NULL },
   { "cdspell", &cdspelling, (shopt_set_func_t *)NULL },
   { "checkhash", &check_hashed_filenames, (shopt_set_func_t *)NULL },
@@ -253,6 +255,7 @@
   cdable_vars = mail_warning = 0;
   no_exit_on_failed_exec = print_shift_error = 0;
   check_hashed_filenames = cdspelling = expand_aliases = check_window_size = 0;
+  auto_cd = 0;
 
   source_uses_path = promptvars = 1;

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 2
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值