Slashdot Mirror


What UNIX Shell Config Settings Work for Newbies?

Human_Diastrophism asks: "I'm involved in the roll-out of a new *x-based computing service in my previously Windows-centric organization. I want things set up so that newcomers will understand and like what they see. They should feel encouraged to behave appropriately, i.e. explore and extend the environment for themselves. We're talking about technically literate folk who are simply new to the demands and freedoms of the command line. No shell advocacy, please; it's going to be ksh or bash. What would you put in a .profile or .rc to make things work smoothly and give the user the capabilities and feedback they need? I'm thinking about stuff like 'stty erase ^H' and 'set -o emacs' so the edit keys work, and a compact but informative prompt. But what else would you put in? What would you leave out?"

3 of 159 comments (clear)

  1. Advice: Install Midnight Commander. by Richard+Steiner · · Score: 4, Informative

    That way, the newbie can perform various filesystem commands or navigate the filesystem without having to know the actual commands at first, and they can slowly wean themselves off the filemanager if they want to later on (it does provide a command line).

    Heck, I still use mc a lot after over 10 years using Linux. It's a very useful tool.

    --
    Mainframe/UNIX Bit Twiddler and long time Windows/Linux Hobbyist.
    The Theorem Theorem: If If, Then Then.
  2. Re:No Cheat sheet - alias the commands! by Haeleth · · Score: 5, Informative
    you can make their lives so much simpler with several aliases:
    [...]
    alias rename="mv"


    BAD idea. DOS commands are not just Unix commands with vowels in; they work differently.

    For example, in DOS you can do
    C:\> ren *.txt *.bak
    and that is the equivalent of
    $ for t in *.txt; do mv $t ${t/%txt/bak}; done
    ...except it's not case sensitive. Note that it is not equivalent to
    $ mv *.txt *.bak
    which is what your dangerous alias will make people expect.

    ALSO: Create a couple of directories in everyone's home dir named, "MyDocuments", "MyPictures", etc., so people don't even have to learn how to create a directory.

    What - not just alias md="mkdir"?
  3. Re:$PS1 by gregmac · · Score: 4, Informative

    I personally have settled on

    PS1='[\u@\h:\w]\$ '

    as my prompt. I work on many different systems (it's not uncommon for me to have 3 or 4 different sessions to different machines), so the hostname is almost a requirment. Username is a bit handy as well .. and it doesn't take up lots of space, so that's ok.

    I also started using \w as my path (which prints the full path) simply because it would be too easy to lose track without it. When you come back to a window and it says "[root@ws005:bin]# " that doesn't really tell you a lot. I much prefer to see "[root@ws005:/usr/bin]#" or "[greg@hydrogen:/usr/local/someprog/bin]$".

    Also handy is that the prompt is a valid source/target for scp or rsync.

    --
    Speak before you think