C Shell Scripting

What is C shell? edit

C shell is a Unix shell created in 1979 by Bill Joy soon after the Bourne shell was released in 1977. Although the latter went on to be the standard shell for Unix, C shell is still popular in BSD distributions. C shell's scripting syntax is modeled after the C language in some aspects. Small programs can be created by writing scripts using the C shell syntax.

The Bourne shell is also an option to create Unix scripts but if you are reading this book you probably decided the C shell fits your requirements better. Deciding to use a Unix script at all means that the requirements of the program are rather simple, such as automating the usage of either standard or custom Unix tools. Complex logic or speed sensitive functions should be written in a more appropriate language as custom tools.

Nowadays, tcsh, a compatible descendant of C shell, is more commonly used. This book will cover both versions.

Setup and Installation edit

Learning the Language edit

 
Illustration of a literal sea shell.

Basics edit

This section is about learning basic C shell to create small useful scripts. Useful for programmers of any level.

Syntax   edit

  • Comparison with Bourne shell
  • Use of variables in the shell
  • Arithmetic variables
  • Expressions and true and false
  • Boolean conditions
  • Built-in variables
  • Array variables
  • Switch statements

Cookbook edit

Snippets   edit

Example scripts edit

Related books edit

Resources edit

Wikibook Development Stages
Sparse text   Developing text   Maturing text   Developed text   Comprehensive text