Skip to Main Content
Linux System Administration
book

Linux System Administration

by Tom Adelstein, Bill Lubanovic
March 2007
Intermediate to advanced content levelIntermediate to advanced
304 pages
11h 12m
English
O'Reilly Media, Inc.
Content preview from Linux System Administration
212
|
Chapter 10: Scripting
bash Beginnings
Many operating systems offered command-line interfaces in the early days, and they
typically allowed commands to be stored in text files and run as batch jobs (a readily
understood concept at the time). It soon became natural to introduce ways to sub-
mit parameters to scripts and allow the scripts to change their behavior under differ-
ent conditions. Unix’s shell made tremendous leaps in flexibility, turning the shell
into a true programming language.
Our interactive examples will show a sample shell prompt,acommand with optional
arguments, and the command’s output, like this:
admin@server1:~$ date
Thu Aug 24 09:16:56 CDT 2006
We’ll show the contents of a shell script like this:
#!/bin/bash
contents of script...
The first line is special in Linux scripts: if it starts with the two characters #!, the rest
of the first line is the filename of the command to run to process the rest of the
script. (If the
# character is not followed by a !, it’s interpreted as a comment that
continues until the end of the line.) This trick lets you use any program to interpret
your script files. If the program is a traditional shell like sh or bash, the file is called a
shell script. At the end of the chapter we’ll show scripts for Perl, PHP, and Python.
Microsoft Windows uses the suffix of the filename to define the file
type and what interpreter should run it. If you change ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Mastering Linux System Administration

Mastering Linux System Administration

Christine Bresnahan, Richard Blum
Mastering Linux Administration

Mastering Linux Administration

Alexandru Calcatinge, Julian Balog

Publisher Resources

ISBN: 9780596009526Supplemental ContentCatalog PageErrata