Basic unix questions

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • traju
    New Member
    • Nov 2007
    • 1

    Basic unix questions

    Hi Friends,

    I am new user in unix o/s,i have a small ques

    what is the difference b/w unix shell scripts and korn shell scripts
  • debasisdas
    Recognized Expert Expert
    • Dec 2006
    • 8119

    #2
    Hi traju

    Welcome to TSDN.

    Feel free to post questions in the related forum only by choosing from under the blue bar on the top of your page.

    But before that give a try from your side and if possible try to post what/how you have approached to solve the problem.

    It will help Experts in the forum in solving / underestanding your problem in a better way.

    Please follow the posting guidelines in every new post/reply.

    Please specify your post/question clearly.Please use proper code tags in all your codes.

    Regards

    Debasis

    Comment

    • numberwhun
      Recognized Expert Moderator Specialist
      • May 2007
      • 3467

      #3
      Originally posted by traju
      Hi Friends,

      I am new user in unix o/s,i have a small ques

      what is the difference b/w unix shell scripts and korn shell scripts
      Nothing. Shell scripts are scripts written in the language of the shell you are using. There are a number of different shells, ranging from bash and korn shells (ksh) to cshell and bourne shell. Korn shell is just that, a shell and a korn shell script is a script written using the korn shell language.

      To see which shells your system supports type the following at the command line:

      Code:
      cat /etc/shells
      Regards,

      Jeff

      Comment

      Working...