25% developed

C Shell Scripting

From Wikibooks, open books for an open world
Jump to navigation Jump to search

What is C shell?[edit | edit source]

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 | edit source]

Learning the Language[edit | edit source]

Illustration of a literal sea shell.
Illustration of a literal sea shell.

Basics[edit | edit source]

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

Syntax 25% developed[edit | edit source]

  • 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 | edit source]

Snippets 25% developed[edit | edit source]

Example scripts[edit | edit source]

Related books[edit | edit source]

Resources[edit | edit source]

Wikibook Development Stages
Sparse text 0% Developing text 25% Maturing text 50% Developed text 75% Comprehensive text 100%