Sponsored Content
Full Discussion: Help
Operating Systems Linux Help Post 302086781 by BOFH on Sunday 27th of August 2006 04:28:52 PM
Old 08-27-2006
Quote:
Originally Posted by Irish Jimmy
I'm usin' /bin/bash:
I have a choice:

/bin/bash
/bin/csh
/bin/ksh
/bin/sh
bin/tcsh

Which one should i use?
If you check in one of the main threads, everyone has a personal preference. /bin/sh was the first popular shell. Korn shell (ksh) is an enhanced version and Bourne Again Shell (bash) is even more enhanced.

On Solaris, you'll probably use Korn shell and on Linux you'll probably use Bourne Again shell.

Quote:
Ok "ls" worked, but ./ isn't.

Smilie
ls works because it's in your PATH (type which ls and it'll probably return /bin/ls). Unless you have a script called ls in your current directory, ./ls will not work. If you just type in "./", bash will just tell you that ./ is a directory.

If you type in ./[command], [command] has to be in the current directory. If you just type in [command], then [command] has to be in one of the directories identified by the PATH environment variable.

Carl
 
All times are GMT -4. The time now is 10:12 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy