Skip to content
This repository was archived by the owner on Dec 23, 2018. It is now read-only.

Commit 64455f8

Browse files
author
Broder Peters
authored
final format and finish manual
1 parent 8db632b commit 64455f8

10 files changed

Lines changed: 10 additions & 12 deletions

UnixAdminToolHandbuch.odt

235 KB
Binary file not shown.

UnixAdminToolHandbuch.pdf

288 KB
Binary file not shown.

admin

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ while true; do
2222
echo ' (7) Cronjobverwaltung'
2323
echo ' (x) exit'
2424
echo
25-
echo
2625

2726
read -n 1 selection
2827

backupmgmt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ while true; do
3131
echo ' (1) Backup erstellen'
3232
echo ' (2) Backup vom Home Verzeichnis erstellen'
3333
echo ' (x) Exit '
34-
34+
echo
3535
read -n 1 selection
3636
echo -ne "\r" # remove input
3737

@@ -60,4 +60,4 @@ while true; do
6060
exit;
6161
;;
6262
esac
63-
done;
63+
done;

cronmgmt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ while true; do
6868
echo ' (4) Crontab löschen'
6969
echo ' (5) Datei als Crontab installieren'
7070
echo ' (x) Exit'
71-
71+
echo
7272
read -n 1 selection
7373
echo -ne "\r" # remove input
7474

hardwaremgmt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ while true; do
3030
echo ' (3) Netzwerkschnittstellen Statistik'
3131
echo ' (4) Prozessverwaltung'
3232
echo ' (5) Ping'
33-
echo ' (x) Exit'
34-
33+
echo ' (x) exit'
34+
echo
3535
read -n 1 selection
3636
echo -ne "\r" # remove input
3737

packagemgmt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ while true; do
2222
echo ' (4) Package aktualisieren'
2323
echo ' (5) Package installieren'
2424
echo ' (6) Package entfernen'
25-
echo ' (x) Zurück'
25+
echo ' (x) exit'
2626
echo
2727
read -n 1 selection
2828
echo -ne "\r" # remove input

permmgmt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ while true; do
2222
echo ' (4) Ändern von der Gruppe einer Datei/Ordner'
2323
echo ' (x) exit'
2424
echo
25-
echo
2625

2726
read -n 1 selection
2827

processmgmt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ while true; do
2020
echo ' (3) Prozess töten'
2121
echo ' (x) exit'
2222
echo
23-
echo
2423

2524
read -n 1 selection
2625

usermgmt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ function userCreate {
2323
read username
2424

2525
echo "Möchten Sie ein Homeverzeichnis für $username erstellen? (J=Ja)"
26-
read homedir -n 1
26+
read -n 1 homedir
2727
if [ ${homedir^^} == "J" ]; then
2828
useradd $username -m
2929
else
@@ -101,6 +101,7 @@ function userChange {
101101
echo ' (3) Neues Homeverzeichnis'
102102
echo ' (4) Gruppenzugehörigkeit hinzufügen'
103103
echo ' (5) Gruppenzugehörigkeit entfernen'
104+
104105
read -n 1 selection
105106
echo -ne "\r" # remove input
106107

@@ -217,8 +218,8 @@ while true; do
217218
echo ' (6) Gruppe erstellen'
218219
echo ' (7) Gruppe ändern'
219220
echo ' (8) Gruppe löschen'
220-
echo ' (x) Exit'
221-
221+
echo ' (x) exit'
222+
echo
222223
read -n 1 selection
223224
echo -ne "\r" # remove input
224225

0 commit comments

Comments
 (0)