
终端目录跳转软件autojump和z使用介绍 - 知乎 - 知乎专栏
这里推荐两个比较智能的软件分别是autojump 和z。由于z体积比较小还有速率比较快,所以比较推荐大家使用z。 autojump. 地址: https:// github.com/wting/autoju mp. MANUAL. Grab a copy of autojump:
GitHub - rupa/z: z - jump around
z - jump around. z [-chlrtx] [regex1 regex2 ... regexn] bash, zsh. Tracks your most used directories, based on 'frecency'. After a short learning phase, z will take you to the most 'frecent' directory that matches ALL of the regexes given on the command line, in. order. For example, z foo bar would match /foo/bar but not /bar/foo.
GitHub - agkozak/zsh-z: Jump quickly to directories that you …
Zsh-z is a command-line tool that allows you to jump quickly to directories that you have visited frequently or recently -- but most often a combination of the two (a concept known as "frecency"). It works by keeping track of when you go to directories and how much time you spend in them.
GitHub - ajeetdsouza/zoxide: A smarter cd command. Supports …
zoxide is a smarter cd command, inspired by z and autojump. It remembers which directories you use most frequently, so you can "jump" to them in just a few keystrokes. zoxide works on all major shells. Getting started • Installation • Configuration • Integrations. Read more about the matching algorithm here. zoxide can be installed in 4 easy steps:
Linux/Unix 效率工具:快速路径切换 z 命令 - 腾讯云
2020年9月9日 · z 是一个开源的快速路径切换工具(类似工具还有 z.lua 、 autojump 、 fasd)。 通过 Frecency 机制对日常访问的路径进行 Frecent 权重计算, z 会帮你切换到所有匹配正则关键字的路径中权重值最高的那条路径。 Frecency 是由 Mozilla 开发,将访问的频率和新近度(上一次访问到现在的时间差)合并为一个度量的启发式方法。 详细内容见:https://github.com/rupa/z. 技巧: z 命令可以使用 tab 来进行补齐,以提高切换效率。 $ z -x . 本文参与 腾讯云自媒体同步 …
终端效率提升:自动路径切换 - 知乎 - 知乎专栏
性能好:z 的性能是 autojump 的两倍以上。 无依赖:autojump 使用 py 开发,可能要另安装,z 只需要所有系统都自带的 bash/ awk 。 更精准:z 的匹配算法使用类似 FireFox 的 frecent 算法,充分考虑访问时间和次数。
程序员的终端目录跳转神器 autojump 和 z,快如⚡️ - 掘金
2021年8月12日 · 之前我们在终端目录跳转切换都是用cd,但是这个有一个缺点就是要具体输出前面的路径一点都不便捷。这里推荐两个比较智能的软件分别是autojump 和z。由于z体积比较小还有速率比较快,所以比较推荐大家使
更懂你的路径切换工具 - z.lua(集 autojump / z / fasd 大成) - V2EX
z.lua 是一个快速路径切换工具,它会跟踪你在 shell 下访问过的路径,通过一套称为 Frecent 的机制(源自 FireFox ),经过一段简短的学习之后,z.lua 会帮你跳转到所有匹配正则关键字的路径里 Frecent 值最高的那条路径去。
开源项目推荐:Z - 高效目录跳转工具 - CSDN博客
2024年9月13日 · 而“z”这个工具,正如描述中所提到的,是一个可以快速跳转到用户经常访问的目录的实用程序,它通过学习用户的目录访问习惯来提升工作效率。 首先,我们来详细解释“z”工具的工作原理。z命令是基于一个简单的算法...
bash启用 z(同理git bash) - lingr7 - 博客园
2020年5月26日 · 这个z就是zsh中也使用了的z全名 z - jump around,github地址rupa/z: z - jump around 在zsh中antigen管理一句即可启用. antigen bundle z 在bash中启用,需要下载好z.sh文件(或者touch z.sh,从github的z.sh复制文本内容,nano编辑保存),把这个文件存好之后在.bashrc文件中添加一句。