Chapter 2
Chapter 2
extension
The shell is a special command: runs
Ex:
ls -l -t note1 note2
by whitespace.
Generally possible to combine multiple options
SYNOPSIS
wc [-c | -m | -C] [-lw] [file...]
DESCRIPTION
The wc utility reads one or more input files and, by
default, writes the number of newline characters, words and
bytes contained in each input file to the standard output.
The utility also writes a total count for all named files,
if more than one input file is specified.
--More--(23%)
Testing$printf "Testing\n"
Testing
$printf "My current shell is %s\n" $SHELL
My current shell is /bin/ksh
printf uses format specifiers similar to what used in C
language (e.g %s)