UCL

UCL Department of Physics and Astronomy »

High Energy Physics

26 Jul 2025

UCL High Energy Physics

More Shell Features

Process Control

I/O redirection

pipelines

The output of one command can be piped to the input of another command with the |symbol.
 ls|wc -l
 14

Directory Manipulation

Changing permissions

chmod u+x fileName     # Give owner execute permission
chmod g+w fileName     # Give group write permission
chmod go-rwx filename  # Remove permissions from all but owner

Previous section: Shell Basics
Next section: Basic Utilities