comment.sh
#!/bin/sh
echo"Hello world."#hello
echo"Hello morning."
#echo"Good morning."
echo "Good evening."
Ausgabe
Hello world.
Good morning.
Good evening.
me.sh
#!/bin/sh
echo "0123456789abcdef"
echo "0123\
4567\
89ab\
cdef"
Ausgabe
0123456789abcdef
0123
456789abcdef
variable.sh
#!/bin/sh
var1 ="test"
for i in 1 2 3;do
echo ${var1}_${i}
done
Ausgabe
test_1
test_2
test_3
for.sh
for i in 1 10 100; do
echo $(expr 999 + $i)
done
Ausgabe
1000
1009
1099
until.sh
#!/bin/sh
i=1
until [ "$i" -gt 5 ];do
echo $i
i=$(expr $i + 1)
done
Ausgabe
1
2
3
4
5
Eine Distribution ist eine Art Linux. Es scheint, dass es auseinander ging, weil es Open Source ist, und es scheint, dass Freiwillige eine zentrale Rolle bei der Entwicklung spielen, und ** Ubuntu ** wurde daraus abgeleitet. Es scheint eine Debian-Serie zu sein. [Zweckmäßig] 7 empfohlene Linux-Distributionen für Anfänger
Recommended Posts