comment.sh
#!/bin/sh
echo"Hello world."#hello
echo"Hello morning."
#echo"Good morning."
echo "Good evening."
production
Hello world.
Good morning.
Good evening.
me.sh
#!/bin/sh
echo "0123456789abcdef"
echo "0123\
4567\
89ab\
cdef"
production
0123456789abcdef
0123
456789abcdef
variable.sh
#!/bin/sh
var1 ="test"
for i in 1 2 3;do
echo ${var1}_${i}
done
production
test_1
test_2
test_3
for.sh
for i in 1 10 100; do
echo $(expr 999 + $i)
done
production
1000
1009
1099
until.sh
#!/bin/sh
i=1
until [ "$i" -gt 5 ];do
echo $i
i=$(expr $i + 1)
done
production
1
2
3
4
5
Une distribution est un type de Linux. Il semble qu'il a divergé parce qu'il est open source, et il semble que les volontaires jouent un rôle central dans le développement, et ** Ubuntu ** a été créé en dérivant de cela. Cela semble être la série ** Debian **. [Par objectif] 7 distributions Linux recommandées pour les débutants
Recommended Posts