有没有一种很好的方法用bash中的波浪号替换主目录?

时间:2012-04-05 21:26:29

标签: regex bash path

我尝试使用路径并用bash中的波形符替换主目录,我希望尽可能少地使用外部程序来完成它。有没有办法只用bash来做到这一点。我得到了

${PWD/#$HOME/\~}

但那不太对。它需要转换:

/home/alice to ~
/home/alice/ to ~/
/home/alice/herp to ~/herp
/home/alicederp to /home/alicederp

作为一个感兴趣的注释,下面是转换\w value in the prompt时bash源如何做到这一点:

/* Return a pretty pathname.  If the first part of the pathname is
   the same as $HOME, then replace that with `~'.  */
char *
polite_directory_format (name)
     char *name;
{
  char *home;
  int l;

  home = get_string_value ("HOME");
  l = home ? strlen (home) : 0;
  if (l > 1 && strncmp (home, name, l) == 0 && (!name[l] || name[l] == '/'))
    {
      strncpy (tdir + 1, name + l, sizeof(tdir) - 2);
      tdir[0] = '~';
      tdir[sizeof(tdir) - 1] = '\0';
      return (tdir);
    }
  else
    return (name);
}

2 个答案:

答案 0 :(得分:14)

我不知道如何直接将其作为变量替换的一部分,但您可以将其作为命令执行:

[[ "$name" =~ ^"$HOME"(/|$) ]] && name="~${name#$HOME}"

请注意,这并不完全符合您的要求:它将“/ home / alice /”替换为“〜/”而不是“〜”。这是故意的,因为有些地方的尾部斜线很重要(例如cp -R ~ /backups执行与cp -R ~/ /backups不同的事情。)

答案 1 :(得分:8)

请参阅this unix.stackexchange answer

  

如果您正在使用bash,则dirs内置版具有所需的内容   行为:

dirs +0
~/some/random/folder

这可能使用了你在那里粘贴的Bash自己的C代码。 :)

以下是如何使用它的:

dir=...    # <- Use your own here.

# Switch to the given directory; Run "dirs" and save to variable.
# "cd" in a subshell does not affect the parent shell.
dir_with_tilde=$(cd "$dir" && dirs +0)

请注意,这仅适用于已存在的目录名称。