-
Notifications
You must be signed in to change notification settings - Fork 0
/
17-case_ornekleri.sh
executable file
·75 lines (63 loc) · 1.02 KB
/
17-case_ornekleri.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#! /bin/bash
#Konu anlatımı: https://alisezisli.com.tr/shell-script-10-karar-yapilari-case
#Hangi aydayız?
#Öncekikle, içinde bulunduğumuz ayın sayısal değerini çekelim:
ay=$(date +%m)
#Şimdi de dönen sayısal değere göre ekrana bir çıktı yazdıralım:
case $ay in
01)
echo "Ocak"
;;
02)
echo "Şubat"
;;
03)
echo "Mart"
;;
04)
echo "Nisan"
;;
05)
echo "Mayıs"
;;
06)
echo "Haziran"
;;
07)
echo "Temmuz"
;;
08)
echo "Ağustos"
;;
09)
echo "Eylül"
;;
10)
echo "Ekim"
;;
11)
echo "Kasım"
;;
12)
echo "Aralık"
;;
*)
echo "Bunu nasıl başardın gerçekten?!?"
esac
# SELINUX durumu
# /etc/selinux/config dosyasındaki SELINUX ifadesinin değerine göre
# çıktı verir:
durum=$(grep ^SELINUX= /etc/selinux/config | cut -d "=" -f 2)
case $durum in
"enforcing")
echo "SELinux security policy is enforced."
;;
"permissive")
echo "SELinux prints warnings instead of enforcing."
;;
"disabled")
echo "No SELinux policy is loaded."
;;
*)
echo "This script won't work anyway..."
esac