goto

October 14, 2016 ยท View on GitHub

Linux Shell 'cd' replacement tool. Kindof like, cd on steroids, with fuzzy file finder and a directory bookmark saver.
License: Standard MIT License.
By: Ankit Vadehra

Update:

Due to the awesome people on GitHub and Hackernews, i have come to know of many changes that had to be done. I'm adding a method to Update the script and add "man" page for people who have already installed "goto".

To Update goto:
~$ wget -O goto "https://raw.githubusercontent.com/ankitvad/goto/master/goto"
~$ mv goto ~/.local/bin/
To Add the 'man' page:
~$ wget -O goto.1 "https://raw.githubusercontent.com/ankitvad/goto/master/man_page/goto.1"
~$ sudo cp goto.1 /usr/local/share/man/man1/
~$ sudo mandb
That's about it. You can see the man page by: man goto
For New users, the normal installation will suffice. Look below for instructions.
Detailed Description: goto | cd on steroids. ===========

Installation:

To install:
If You have "git" installed
~$ git clone "https://github.com/ankitvad/goto"
~$ cd goto
~$ make install
If "git" is not present
~$ wget -O goto.zip "https://github.com/ankitvad/goto/archive/master.zip"
~$ unzip goto.zip
~$ cd goto-master
~$ make install