Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'SSH to multiple boxes via tab completion' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
SSH to multiple boxes via tab completion
Authored by: sidekickr on Oct 14, '04 11:42:09AM

To have the commands work in the terminal without executing bash, you can create a copy of your .bashrc called .profile or make .profile linked to the .bashrc file.



[ Reply to This | # ]
SSH to multiple boxes via tab completion
Authored by: EddEdmondson on Oct 14, '04 11:48:36AM
I suspect it works ok for me as I have the following in a .bash_profile file

if [ -f ~/.bashrc ]; then
    . ~/.bashrc
fi
I honestly can't remember where I picked that one up from though.

[ Reply to This | # ]