removed sample scripts

This commit is contained in:
Jack Halford 2017-03-25 21:34:15 +01:00
parent 2dd095f525
commit 66990a201b
34 changed files with 0 additions and 196 deletions

View file

@ -1 +0,0 @@
{ ls | cat }

View file

@ -1,8 +0,0 @@
case van in
( "bus" ) echo Hello world ;;
( "velo" ) echo Comment va ;;
( "van" ) case tutu in
( toto ) pwd ;;
( tutu ) ls ;;
esac ;;
esac

View file

@ -1,2 +0,0 @@
ls # Da comment
pwd

View file

@ -1,4 +0,0 @@
for i in hello bonjour salut comment
do
echo $i | cat -e
done

View file

@ -1,5 +0,0 @@
hello() (
echo HELLO
)
hello

View file

@ -1,9 +0,0 @@
if cat wef4eeef
then
echo Conditon 1
elif cat yulu
then
echo Condition 2
else
echo Condition 3
fi

View file

@ -1,10 +0,0 @@
if ls ;
then
pwd
elif ls
then
pwd
elif ls
then
pwd
fi

View file

@ -1,5 +0,0 @@
if cat yolo ;
then
pwd
else ls
fi

View file

@ -1,11 +0,0 @@
if cat yolo ;
then
pwd
elif ls
then
pwd
elif pwd
then
ls
else ls
fi

View file

@ -1,2 +0,0 @@
echo "echo hello" >> sample/infinite.sh
echo hello

View file

@ -1,6 +0,0 @@
read -p "Quel est ton login ?" login
while [ 1 ]
do
echo "Tu es le meilleur codeur de l'ecole $login"
sleep 1
done

View file

@ -1 +0,0 @@
ls

View file

@ -1,21 +0,0 @@
if ls
then
pwd ; echo "Salut"
while ls
do
until pwd
do
echo KO SI JE M AFFICHE
done
if cat faux
then
echo BONJOUR MAKEFILE
elif [ -f Makefile ]
then
echo BONJOUR MAKEFILE
else
echo KO SI JE M M AFFICHE
fi
echo "Encore une"
done
fi

View file

@ -1,3 +0,0 @@
cat < file1 < file2 > file3 > file4

View file

@ -1 +0,0 @@

View file

@ -1,3 +0,0 @@
cat && ls || ls | cat && ls | cat || ls

View file

@ -1,2 +0,0 @@
(ls | cat
pwd ; ls)

View file

@ -1,10 +0,0 @@
echo aaa \
| (echo bbb 1; cat -e ;echo ccc 1) \
| (echo bbb 2; cat -e ;echo ccc 2) \
| (echo bbb 3; cat -e ;echo ccc 3) \
| (echo bbb 4; cat -e ;echo ccc 4) \
| (echo bbb 5; cat -e ;echo ccc 5) \
| (echo bbb 6; cat -e ;echo ccc 6) \
| (echo bbb 7; cat -e ;echo ccc 7) \
| (echo bbb 8; cat -e ;echo ccc 8) \
| (echo bbb 9; cat -e ;echo ccc 9)

View file

@ -1,8 +0,0 @@
until [ 1 ]
do
echo LOOP1
until [ 1 ]
do
echo hello
done
done > file1

View file

@ -1,11 +0,0 @@
until cat wefwef
do
until ls
do
pwd ; ls
done
until cat eqwfewf
do
ls | cat
done
done

View file

@ -1,11 +0,0 @@
ONE=0
while [ $ONE -le 10 ]
do
TWO=0
while [ $TWO -le 10 ]
do
echo world
math TWO + 1;
done
math ONE + 1;
done > file1

View file

@ -1 +0,0 @@
HELLO=WORLD

View file

@ -1,12 +0,0 @@
while
while
while ls | cat
do
ls
done
do
ls | cat
done
do
pwd
done

View file

@ -1,11 +0,0 @@
while ls
do
while cat rwgwghe
do
echo Hello World
done
while pwd
do
echo Bonjour ca va
done
done

View file

@ -1,5 +0,0 @@
ls
while [ 1 ] ;
do
ls | cat
done

View file

@ -1,5 +0,0 @@
ls
for HELLLO in yolo ;
do
ls
done > file1

View file

@ -1,16 +0,0 @@
ONE=11
while [ $ONE -gt 1 ]
do
TWO=11
while [ $TWO -gt 1 ]
do
THREE=11
while [ $THREE -gt 1 ]
do
echo hello
((THREE--))
done
((TWO--))
done
((ONE--))
done > file1

View file

@ -1,6 +0,0 @@
echo hello
while ||
do
pwd ;
done
ls | cat

View file

@ -1 +0,0 @@
< A B | ( C 2> D & E < F ) > G ; H=I J K

View file

@ -1 +0,0 @@
< A B | C | D | E > F

View file

@ -1 +0,0 @@
A && B || C && D

View file

@ -1 +0,0 @@
A ; B & C ; D || E

View file

@ -1 +0,0 @@
(A ; B &) | (C || D) && E

View file

@ -1 +0,0 @@