autojump安装使用

注:这里只介绍我使用的方式,当然不是唯一方式

作用:autojump可以快速进行路径导航,具备记忆历史路径;不仅仅是可以进入当前路径下的某个路径,也可以是其他历史路径

1. 下载

  • 首先,$ git clone git://github.com/joelthelion/autojump.git
  • 完成后进入autojump目录, cd autojump
  • ./install.py

2. 配置

  • 根据上面./install.py安装提示如下,将内容加入到.zshrc的末尾
1 Please manually add the following line(s) to ~/.zshrc:
2
3     [[ -s /home/gaorong/.autojump/etc/profile.d/autojump.sh ]] && source /home/gaorong/.autojump/etc/profile.d/autojump.sh
4
5     autoload -U compinit && compinit -u
6
7 Please restart terminal(s) before running autojump.

3. 测试

$ autojump -v或者j -v 查看版本和是否安装完成

$ cd aa/bb/cc

$ j cc 查看是否直接调到了cc目录下

时间: 2024-10-12 14:25:22

autojump安装使用的相关文章

Linux常用软件tree,autojump,lrzsz安装

tree安装 1.获取压缩文件 wget http://mama.indstate.edu/users/ice/tree/src/tree-1.7.0.tgz 2.解压缩 tar -zxvf tree-1.7.0.tgz 3.进入目录tree-1.7.0进行安装 cd tree-1.7.0/ make install 4.配置环境 vim ~/.bashrc 将下面一段话考入该文件,其中目录tree-1.7.0之前的路径为你自己的安装路径 export PATH=$PATH:~/software

Mac系统安装autojump流程 --摘自小胡子哥

查询: 在命令行中直接运行autojump查看当前系统是否有安装以及版本号 如果显示如下结果: The program 'autojump' is currently not installed. You can install it by typing: sudo apt-get install autojump 1  The program 'autojump' is currently not installed. You can install it by typing: 2  sudo

ubuntu 14.04 安装oh-my-zsh 和 autojump

oh-my-zsh https://github.com/robbyrussell/oh-my-zsh/ 如果没有安装git需要先安装git: sudo apt-get install git 1. sudo apt-get install zsh 2. wget --no-check-certificate http://install.ohmyz.sh -O - | sh 3. 这时可能会出现 密码: chsh:PAM, 手动输入 chsh -s /bin/zsh 即可解决 4. 注销或重启

bash环境下自动安装并初始化oh-my-zsh & autojump zsh

Linux和Mac系统默认的shell 都是bash,但是真正强大的shell应属于zsh,而且完全监控bash,是shell中的终极杀手,有很多bash所没有的功能,但是zsh的初期配置太过繁琐,流行率一直不高,直到有个叫Robby Russell的家伙在github上开发了oh-my-zsh项目,使大家使用zsh的便捷性大大提高. 由于在公司的电脑是windows,就折腾了下cygwin,并且安装了zsh,这样做起维护方便很多了,而且我把autojump项目也集成一起,最后写了一个自动安装的

autojump 之 git本地安装

1.克隆autojump的repo,Terminal下执行: git clone git://github.com/joelthelion/autojump.git 然后进入clone下来的目录,执行安装脚本: ./install.python 在安装过程中,会在-/下建立.autojump文件夹 2.配置 在shell的配置文件.zshrc中添加如下配置信息 vim ~/.zshrc文件,添如下: [[ -s /root/.autojump/etc/profile.d/autojump.sh

macbook安装autojump

1. wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O -|sh 2. 在.zshrc下添加这两条: plugins=(git textmate ruby autojump osx mvn gradle) [[ -s `brew --prefix`/etc/autojump.sh  ]] && . `brew --prefix`/etc/autojump.sh 3. source .z

Linux autojump命令

一.简介 autojump是一个命令行工具,它允许你可以直接跳转到你喜爱的目录,而不用管你现在身在何处. 二.安装 yum install autojump 三.用法 j [目录的名字或名字的一部分] 四.常见问题 /etc/ profile.d /autojump.sh:.:20: no such file or directory: /etc/profile.d/autojump.zsh 解决方法 1.下载autojump.zsh到目录/etc/profile.d/ wget https:/

zsh+autojump

1.安装zsh http://www.cnblogs.com/EasonJim/p/6283247.html mac有自带的,但是不是最新的,你可以更新到最新. 将zsh弄成默认的shell chsh -s /bin/zsh 如果你的~/目录中没有.zshrc文件,你可以自己建一个. 2.安装并配置,autojump http://www.barretlee.com/blog/2015/03/30/autojump-in-mac/ 3.autojump的使用方法. 学习方法. https://l

Autojump:一个可以在 Linux 文件系统快速导航的高级 cd 命令

相关博客:https://linux.cn/article-3401-1.html 对于那些主要通过控制台或终端使用 Linux 命令行来工作的 Linux 用户来说,他们真切地感受到了 Linux 的强大. 然而在 Linux 的分层文件系统中进行导航有时或许是一件头疼的事,尤其是对于那些新手来说. 现在,有一个用 Python 写的名为 autojump 的 Linux 命令行实用程序,它是 Linux 'cd'命令的高级版本. Autojump – Linux 文件系统导航的最快方式 这个