From ea66dd57312e68f66d751bfd90cd47571930c480 Mon Sep 17 00:00:00 2001 From: Antoine Riard Date: Tue, 25 Apr 2017 03:45:38 +0200 Subject: [PATCH] correction readme --- 42sh/README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/42sh/README.md b/42sh/README.md index baff7d45..e705bf1b 100644 --- a/42sh/README.md +++ b/42sh/README.md @@ -2,7 +2,7 @@ 42sh school project. -By alao, ariard, gwojda, jhalford, wescande. +By alao, ariard, gwojda, jhalford, wescande. Final note : 125/100, best grade possible. More than 10 000 lines of pure C, even the library was written by ourselves. No memory leaks, no crash were allowed. The most impressive project of the first cycle of 42 school cursus. @@ -96,12 +96,12 @@ Commands|Functions| `fg n`|Bring the specified jobs to foreground where `n` is the numerical value of the process found in `jobs`. ## scripting -`while compound-list ; do compound-list ; done` -`until compound-list ; do compound-list ; done` -`if compound-list ; then compound-list ; elif compound-list ; then compound-list ; else compound-list` -`for i in list ; do compound-list ; done` -`case pattern1 in ( pattern2 ) compound-list ;; ( pattern1) compound-list ;; esac` -`{ compound-list }` -`! command` -`func() { compound-list }` -`VAR="hello world"` +`while compound-list ; do compound-list ; done` +`until compound-list ; do compound-list ; done` +`if compound-list ; then compound-list ; elif compound-list ; then compound-list ; else compound-list` +`for i in list ; do compound-list ; done` +`case pattern1 in ( pattern2 ) compound-list ;; ( pattern1) compound-list ;; esac` +`{ compound-list }` +`! command` +`func() { compound-list }` +`VAR="hello world"`