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

In-place command output insertion (backticks) #5

Open ThibautHH opened 1 year ago

ThibautHH commented 1 year ago

In-place command output insertion

Use backticks (`) to insert command output in place in the command line

Example

> echo `echo hello`
hello
>