Project

yoke

0.0
No commit activity in last 3 years
No release in over 3 years
Alias your current directory for fast directory access.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.3
>= 0
>= 0

Runtime

= 0.18.1
 Project Readme

Yoke

Alias your current directory for fast directory access.

Create an alias for the current directory with a small 'yoke' command. And when you're somewhere else just type the name of the create alias and you'll be cd'ed to the director.

Installation

Install the gem:

$ gem install yoke

Usage

There are only 5 functions you can use with ths gem. We'll start with the beginning.

Help

Get an overview of all commands available with a small description.

yoke help

Setup

Prepare your current shell (bash or zsh) so that it loads the .yoke file every time you start a new shell.

yoke setup

Up

Create a new alias for the current directory with the name of the current directory.

yoke
yoke up
yoke up the_alias_name

You can pass an extra parameter (the_alias_name) so that the alias will be this name instead of the current directory name.

Down

Remove the alias that exists with the name of the current directory.

yoke down
yoke down the_alias_name

You can pass an extra parameter (the_alias_name) so that the alias with this name will be removed instead of the current directory name.

List

Show the list of aliases created with yoke.

yoke list

License

Check out the LICENSE.txt file. Really awesome reading material...

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request