Introduction to C Programming
Unix Usage
Edgar SIMO-SERRA
Last class summary
- C is a general-purpose high-performance language
- We will be using Unix (Linux)
- Terminals are efficient (when you know what you are doing)
- We learned
- Basic Unix usage
- Basic terminal usage
- Basic emacs usage
Class Objectives
- Linux filesystem
- Using Linux commands
- Compiling C programs
Linux Filesystem
- Similar to what you may be used to on Windows
- Files can be grouped in directories
- Directories can be placed in directories
- Unlike windows
- The filesystem is follows a single tree hierarchy
- The root (
/
) represents the top of the hierarchy
- All other directories are placed in the root or in each other
- Directories are delimited by forward slashes (
/
)
- File extensions don’t matter
- Is case-sensitive! (lowercase != uppercase)
Special Symbols
.
(single period) represents current directory
..
(two periods) represents directory above current directory
- Files and directories starting with
.
(single period) are hidden
Path Examples 2
- Assume you are in
/home/user
(current directory)
- Which of the following are equivalent?
/home/user/foo
foo
./foo
../user/foo
foo/../foo
- You can get the current path with `pwd`
Path Summary
- Directory structure is a tree where
/
is the root
- Paths can be relative to the current directory or absolute
- It is not possible to distinguish files from directories from the path
.
and ..
are special characters for current path and up one directory
- When you log in, your directory is set to your home
- You can get the current path with
pwd
File Permissions
- Each file belongs to a user and a group, usually expressed as
user:group
- There are three binary permissions (can be enabled or disabled):
- read: allows reading the file
- write: allows writing the file
- execute: allows executing the file (or viewing contents if directory)
- There are three levels of permissions:
- user (u): controls what the user that owns the file can do
- group (g): controls what users that belong to the file group can do
- other (o): controls what users not belonging to
user
and group
can do
Representation of Permissions
- Represented as a combination of one character and three triads of characters
- Each triad represents
rwx
(read-write-execute)
- User, group and other have their own triads
- First character indicates file type (
-
is regular file)
```sh
-rwxr–r– 1 user group 0 Sep 19 17:10 test_file*
* Can see permissions with `ls -l`
* Can change permissions with `chmod` and ownership with `chmod`
Changing Permissions
- You can change permissions with
chmod
$ chmod {ugo}{+-}{rwx}
- Remove read access from group
$ chmod g-r FILE
- Add execute access to other
$ chmod o+x FILE
- Add read and write to group
$ chmod g+rw FILE
Important Points
- You need read permission to be able to read the contents of the file
- You need write permission to be able to write to the contents of the file
- You need execute permission to be able to execute the file as a command
- To see the contents of a directory, you need both read and execute permission
The Shell
- Virtual terminal handles input and output
- Shell is the user interface to the operating system
- There are many types of shells
sh
: is the most simple one
bash
: allows for more complex programming
- The standard shell on Linux is
bash
- All have the same basic functionality, however, advanced syntax differs
The PATH
- How does the shell know how to interpret and run programs?
- It searches programs that match your command in the
$PATH
- You can see your
$PATH
with$ echo $PATH
- To run local programs you must use an explicitly relative path starting with
./
- Example:
$ ./my_local_program
Basic Commands 1
- pwd
$ pwd
- Tells you the current directory
- Useful in scripts
- List
$ ls [dir]
- Lists what is in the directory
[dir]
- If
[dir]
is not specified, lists current directory
- Change directory
$ cd [path]
- Changes the working directory to
[path]
- If
[path]
is not specified, changes to the home directory
Basic Commands 2
- Copy
$ cp SOURCE DEST
- Copies
SOURCE
to DEST
- If
DEST
is a directory, will put SOURCE
inside it
- If
DEST
does not exist, it will rename the copy of SOURCE
to DEST
- Move
$ mv SOURCE DEST
- Sames as copy, but removes
SOURCE
on success
- Remove
$ rm FILE
- Removes
FILE
permanently
- You can list more than one file with separated by spaces
Basic Commands 3
- Make directory
$ mkdir PATH
- Creates a new directory at
PATH
- Remove directory
$ rmdir PATH
- Removes a directory at
PATH
- Directory to remove must be empty
- File viewer
$ less FILE
- Viewer for text files
- Can not edit the file
- Use arrows keys and spacebar to move
q
exits
Basic Commands 4
- Online reference manual
$ man PAGE
- Lets you look up documentation
- Very useful when you forget commands
- Opens up in the
less
file viewer
- Exit with
q
- For example try the following command:
$ man man
Command Options
- It is possible to change command options with flags that start with
-
- A description of the options and what they do are shown in the manual pages
- Some useful examples
- Detailed list of files
$ ls -l
- Display all directory files (including hidden files)
$ ls -a
- It is possible to combine flags with a single hyphen
$ ls -al
Emacs
- We will be using emacs to edit text
- Running emacs
$ emacs new.txt
- If
new.txt
doesn’t exist, it will be created
- To quit
- Click on the close icon
- [Files]→[Exit Emacs]
- Ctrl-x, Ctrl-c
Keybindings
- Moving the cursor
- Ctrl+p, Ctrl+n (↑, ↓)
- Ctrl+b, ctrl+f (←, →)
- Ctrl+a (beginning of line)
- Ctrl+e (end of line)
- Select
- Cut
- Copy
- Ctrl-Space, M-w
- For M-w, hit escape then w, or hold alt and press w
- Paste
- Save
Today’s Exercises
- Create a directory called
today
- Move into the new directory
- Run the following command:
sh /homeb/w522565/ex02.sh
- Move into
ex02
- Follow
instructions
Today’s Summary
- We learned about the Linux filesystem
- Different between absolute and relative paths
- How to move, copy, and remove files and directories
- What the permissions mean
- We learned how to use commands and some basic commands
pwd
, ls
, cd
, cp
, mv
, rm
, mkdir
, rmdir
, less
, man
- Learned how to use options:
ls -l
- Reviewed how to use Emacs
- Learned to compile and execute Code
Next Class
- How to write a C program
- How to use variables in C programs
- Assignments and arithmetics with variables
- Using the standard input/output


Introduction to C Programming Unix Usage Edgar SIMO-SERRA