ThibautHH / 42sh

Projet de fin de première année du cursus Epitech répliquant le fonctionnement du shell TCSH.
MIT License
2 stars 0 forks source link

Sub-shell execution #6

Open ThibautHH opened 1 year ago

ThibautHH commented 1 year ago

Sub-shell execution

Execute a sequence of commands inside a sub-shell when encased in pathenses (()).

Example

> pwd
/etc
> ( cd ; pwd ) ; pwd
/home/user
/etc
>