linux之autojump命令
Posted 入门小站
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux之autojump命令相关的知识,希望对你有一定的参考价值。
安装
1. OS X
推荐使用 Homebrew 安装 autojump
> brew install autojump
/etc/profile
~/.bash_profile
~/.bash_login
~/.profile
[[ -s $(brew --prefix)/etc/profile.d/autojump.sh ]] && . $(brew --prefix)/etc/profile.d/autojump.sh
[[ -s `brew --prefix`/etc/autojump.sh ]] && . `brew --prefix`/etc/autojump.sh
2. Linux
> git clone git://github.com/joelthelion/autojump.git
> cd autojump
> ./install.py or ./uninstall.py
> [[ -s ~/.autojump/etc/profile.d/autojump.sh ]] && . ~/.autojump/etc/profile.d/autojump.sh
$ autojump --version
autojump release-v21.1.2
2. 用法
跳转到指定目录
>j directoryName
> j rumenz
/data/www/rumenz
> pwd
/home/vagrant
> j --stat
10.0: /etc/nginx/conf.d
20.0: /home/vagrant/www/xxx/doc_api
34.6: /home/vagrant/www/xxx
40.0: /var/log/nginx
Total key weight: 104. Number of stored dirs: 4
> j n__ (Tab 键自动添加了下划线)
/var/log/nginx
跳转到指定目录的子目录(Mac 下效果与j
相同,Ubuntu 下不好用)
> jc directoryName
使用系统工具(Mac Finder, Windows Explorer, GNOME, etc.)打开目录,类似 Mac OS terminal 下的 open
命令,但open
命令需要指定路径(Mac 中还算实用,Ubuntu 下不好用)
> jo directoryName
查看权重 j --stat
> j --stat
10.0: /etc/nginx/conf.d
10.0: /home/vagrant/www/rumenz/doc_api
10.0: /var/log/nginx
30.0: /home/vagrant/www/rumenz
Total key weight: 59. Number of stored dirs: 4
> j --stat
10.0: /Users/xxx/xxx/xxxx/xxxx/xxxx/vendor
22.4: /Users/xxx/xxx/xxxx/xxxx/xxxx/log
32: total weight
2: number of entries
10.00: current directory weight
data: /Users/xxx/Library/autojump/autojump.txt
原文链接:https://rumenz.com/rumenbiji/linux-autojump.html
微信公众号:入门小站
- 回复【1001】获取 linux常用命令速查手册
- 回复【10010】获取 阿里云ECS运维Linux系统诊断
- 回复【10012】获取 Linux学习笔记【强悍总结值得一看】
- 回复【10013】获取 shell简明教程
以上是关于linux之autojump命令的主要内容,如果未能解决你的问题,请参考以下文章