Skip to content

Commit

Permalink
Add some notes about files and directories
Browse files Browse the repository at this point in the history
  • Loading branch information
sajith committed May 16, 2024
1 parent b387b18 commit d843775
Showing 1 changed file with 44 additions and 1 deletion.
45 changes: 44 additions & 1 deletion theme2/SF100/commandline-slides.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,14 +120,57 @@ Getting into CLASSE Linux systems

# Files and directories

Everything is a file!


## Directory navigation

## Wildcards
```{.bash}
[ssasidharan@lnx201 ~]$ tree -d -L 1 /
/
├── bin -> usr/bin
├── boot
├── cdat
├── cifs
├── cvmfs
├── dev
├── etc
├── home
├── lib -> usr/lib
├── lib64 -> usr/lib64
├── media
├── misc
├── mnt
├── net
├── nfs
├── opt
├── proc
├── root
├── run
├── sbin -> usr/sbin
├── srv
├── sys
├── tmp
├── usr
└── var
25 directories
```

## Your home directory

- You have a "home" directory.
- Usually `/home/$USER`
- Also `$HOME`
- You can write your files and create directories here.


## The current working directory

## Fun facts about file names

## Wildcards

## Standard input, output, and error

## I/O redirection
Expand Down

0 comments on commit d843775

Please sign in to comment.