|
You can create a script file that would do that for you.. Let's call this file
gothere
#!/bin/sh
#
#
cd /go/to/this/directory
#
That's it! Put whatever directory in that you want after the cd.
After you create this file, do this command:
chmod +x gothere
And if you want it to be available no matter what directory you are currently in, do something like this:
cp gothere /usr/bin/gothere
|