FREE THOUGHT · FREE SOFTWARE · FREE WORLD

Home » Shell Scripting » Custom Webmaster Shell Environment

Custom Webmaster Shell Environment

Custom Webmaster Shell Environment Create a customized bash shell environment with this .bash_profile when using SSH.

Custom Webmaster Shell Environment

July 4th, 2007

DreamHost Customized Bash Shell EnvironmentWebmasters often use SSH to remotely admin web sites and servers, learn how to make your shell colorful and powerful using my sample .bash_profile and you can be up and running in 30 seconds!


ScreenShot using the custom .bash_profile

DreamHost Customized Bash Shell Environment

Create the Custom Environment

All you have to do is create or edit your ~ root file .bash_profile to get the customization you want. The PS1 variable being exported below is the prompt. I included a few alias commands as well, which explains why the outputs from the 2 screen captures above are different for the ls command.

.bash_profile

Simply copy and paste the below or you can download text file: Custom Pretty DreamHost .bash_profile.

# ~/.bash_profile: executed by bash(1) for login shells.
 
umask 002
 
export PS1="\n\e[1;37m[\e[0;32m\u\e[0;35m@\e[0;32m\h\e[1;37m]\e[1;37m[\e[0;31m\w\e[1;37m]\n$ "
export JAVA_HOME=/usr/local/dh/java
 
alias dsiz='du -sk * | sort -n --'
alias bash='clear;/bin/bash -l'
alias ls='ls -lahF --color=auto'

More Reading


Add Comment!

Leave a Reply

Your email address will not be published.


Google +

It's very simple - you read the protocol and write the code. -Bill Joy

Except where otherwise noted, content on this site is licensed under a Creative Commons Attribution 3.0 License, just credit with a link.
This site is not supported or endorsed by The Apache Software Foundation (ASF). All software and documentation produced by The ASF is licensed. "Apache" is a trademark of The ASF. NCSA HTTPd.
UNIX ® is a registered Trademark of The Open Group. POSIX ® is a registered Trademark of The IEEE.

Site Map | Contact Webmaster | Glossary | License and Disclaimer | Terms of Service |

↑ TOPMain