7 lines
162 B
Plaintext
7 lines
162 B
Plaintext
MultiLine:
|
|
touch test.txt
|
|
echo "Première ligne" > test.txt
|
|
echo "Deuxième ligne" >> test.txt
|
|
echo "Troisième ligne" >> test.txt
|
|
cat test.txt
|
|
rm test.txt |