ajout fichier error qui recense les erreurs observees
This commit is contained in:
16
error.md
Normal file
16
error.md
Normal file
@@ -0,0 +1,16 @@
|
||||
1. redirection et quotes expansion
|
||||
|
||||
```
|
||||
bash> echo "hello" > "file"
|
||||
bash> ls
|
||||
file
|
||||
bash>
|
||||
```
|
||||
|
||||
```
|
||||
minishell> echo "hello" > "file"
|
||||
minishell> ls
|
||||
'"file"'
|
||||
minishell>
|
||||
```
|
||||
2.
|
||||
@@ -131,12 +131,44 @@ ls
|
||||
< notworking.txt
|
||||
|
||||
echo > doethet
|
||||
ls
|
||||
cat doethet
|
||||
|
||||
echo hoi >> doethet "of niet"
|
||||
ls
|
||||
cat doethet
|
||||
|
||||
echo clear > "doethet"
|
||||
ls
|
||||
cat doethet
|
||||
|
||||
echo > doethet
|
||||
echo hoi >> doethet "of niet"
|
||||
ls
|
||||
cat doethet
|
||||
|
||||
echo > doethet
|
||||
echo clear > "doethet"
|
||||
ls
|
||||
cat doethet
|
||||
|
||||
echo hoi >> doethet "of niet"
|
||||
echo clear > "doethet"
|
||||
ls
|
||||
cat doethet
|
||||
|
||||
echo > doethet
|
||||
echo hoi >> doethet "of niet"
|
||||
echo clear > "doethet"
|
||||
ls
|
||||
cat doethet
|
||||
|
||||
echo test > working.txt
|
||||
echo > newfile.txt hardertest
|
||||
ls
|
||||
cat doethet
|
||||
|
||||
echo test > working.txt
|
||||
echo > newfile.txt hardertest
|
||||
|
||||
echo hallo >file1 >file2
|
||||
cat file1 file2
|
||||
|
||||
Reference in New Issue
Block a user