How to set alias permanently using command?

2

I don't have access to home directory. So I can't access .bashrc or .profile file. So the only option (I guess) is using the command for setting alias.

Is there any way to add alias permanently using any command (Without using .bashrc or .profile) ?

Suresh Anbarasan

Posted 2010-11-01T11:53:25.040

Reputation:

Does not belong here, but try alias --help, IIRC there is just one option.Not so hard. Try that next time first, always. – None – 2010-11-01T11:58:00.607

1how come you don't have access to the home directory? I mean whoever the user you log in as, there should be a home directory – nonopolarity – 2010-11-01T11:58:05.393

2You should contact your system administrator and ask the to fix your account instead. Or, if that no home / no access to .bashrc is by design, then you need to ask them to relax that policy. – Janne Pikkarainen – 2010-11-01T12:25:05.083

Answers

2

If you don't have any permanent local storage, then you just can't make any permanent settings change. If you do have some permanent local storage that isn't your home directory (which would be pretty strange), you can run this every time you log in:

export HOME=/path/to/permanent/storage
. ~/.profile

You could put your settings in a file available somewhere on the web, at an URL you can remember easily. Then, assuming your home directory is writable (but, I suppose, erased when you log out or something like that), you can download that file and run it:

wget http://www.example.com/~suresh/.profile
. ./.profile

In addition to shell settings, this .profile might contain an archive that it unpacks when you run it, so that you get a .bashrc, a .emacs, a .vimrc, a .Xresources, and whatever else you like. The shar commands from sharutils creates an archive which is embedded in a shell script which unpacks the archive when you run it, relying only on ubiquitous utilities.

Gilles 'SO- stop being evil'

Posted 2010-11-01T11:53:25.040

Reputation: 58 319