Compare commits
7 Commits
Author | SHA1 | Date | |
---|---|---|---|
6545189eb0 | |||
4e375b5d08 | |||
![]() |
2be3db4187 | ||
![]() |
9dc5a2550c | ||
![]() |
6f82b9eda4 | ||
![]() |
28dada6046 | ||
deeb9080fe |
2
alias/noalias.sh
Executable file
2
alias/noalias.sh
Executable file
@@ -0,0 +1,2 @@
|
||||
|
||||
ll
|
3
alias/yesalias.sh
Executable file
3
alias/yesalias.sh
Executable file
@@ -0,0 +1,3 @@
|
||||
shopt -s expand_aliases # Aktiviert Aliase
|
||||
alias ll='ls -la'
|
||||
ll
|
8
piping/debello.txt
Normal file
8
piping/debello.txt
Normal file
@@ -0,0 +1,8 @@
|
||||
Gallia est omnis divisa in partes tres, quarum unam incolunt Belgae, aliam Aquitani, tertiam qui ipsorum lingua Celtae, nostra Galli appellantur.
|
||||
Hi omnes lingua, institutis, legibus inter se differunt.
|
||||
Gallos ab Aquitanis Garunna flumen, a Belgis Matrona et Sequana dividit.
|
||||
Horum omnium fortissimi sunt Belgae, propterea quod a cultu atque humanitate provinciae longissime absunt, minimeque ad eos mercatores saepe commeant atque ea quae ad effeminandos animos pertinent, important, proximique sunt Germanis, qui trans Rhenum incolunt, quibuscum continenter bellum gerunt.
|
||||
Qua de causa Helvetii quoque reliquos Gallos virtute praecedunt, quod fere cotidianis proeliis cum Germanis contendunt, cum aut suis finibus eos prohibent aut ipsi in eorum finibus bellum gerunt.
|
||||
Eorum una pars, quam Gallos obtinere dictum est, initium capit a flumine Rhodano, continetur Garumna flumine, Oceano, finibus Belgarum, attingit etiam ab Sequanis et Helvetiis flumen Rhenum, vergit ad septentriones.
|
||||
Belgae ab extremis Galliae finibus oriuntur, pertinent ad inferiorem partem fluminis Rheni, spectant in septentrionem et orientem solem.
|
||||
Aquitania a Garunna flumine ad Pyrenaeos montes et eam partem Oceani quae est ad Hispaniam pertinet; spectat inter occasum solis et septentriones.
|
0
piping/ls.txt
Normal file
0
piping/ls.txt
Normal file
1
teil17/.gitignore
vendored
Normal file
1
teil17/.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
backup.txt
|
8
teil17/familie.txt
Normal file
8
teil17/familie.txt
Normal file
@@ -0,0 +1,8 @@
|
||||
Simpson, Marge
|
||||
Simpson, Homer
|
||||
simpson, Abe
|
||||
Simpson, Bart
|
||||
Simpson, Lisa
|
||||
Simpson, Maggie
|
||||
Powell, Herb
|
||||
|
24
teil17/schule.txt
Normal file
24
teil17/schule.txt
Normal file
@@ -0,0 +1,24 @@
|
||||
--- Lehrer -----
|
||||
Skinner, Seymour
|
||||
Krababel, Edna
|
||||
Hoover, Elisabeth
|
||||
Largo, Dewey
|
||||
|
||||
--- Schüler ----
|
||||
2: Powell, Janey
|
||||
2: Wiggum, Ralph
|
||||
2: Simpson, Lisa
|
||||
2: Shorter, Becky
|
||||
2: Taylor, Alison
|
||||
4: Kyle
|
||||
4: Clark, Lewis
|
||||
4: van Houten, Milhouse
|
||||
4: Simpson, Bart
|
||||
4: Muntz, Nelson
|
||||
4: Borton, Wendell
|
||||
4: Prince, Martin
|
||||
6: Starbeam, Dolph
|
||||
6: Jones, Jimbo
|
||||
6: Zzyswincz, Kearney
|
||||
?: Zörker, Uter
|
||||
|
6
teil17/snpp.txt
Normal file
6
teil17/snpp.txt
Normal file
@@ -0,0 +1,6 @@
|
||||
Burns, Monty
|
||||
Smithers, Waylon
|
||||
Carlson, Carl
|
||||
Leonard, Lenny
|
||||
Simpson, Homer
|
||||
|
7
teil20/hello-shebang.py
Executable file
7
teil20/hello-shebang.py
Executable file
@@ -0,0 +1,7 @@
|
||||
#! ./mybang
|
||||
def main():
|
||||
print("Hallo aus teil20!")
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
4
teil20/hello.js
Executable file
4
teil20/hello.js
Executable file
@@ -0,0 +1,4 @@
|
||||
#! /usr/bin/node
|
||||
// Datei: hello.js
|
||||
|
||||
console.log('Hallo von JavaScript')
|
9
teil20/hello.py
Executable file
9
teil20/hello.py
Executable file
@@ -0,0 +1,9 @@
|
||||
#! ./mybang
|
||||
# Datei: hello.py
|
||||
|
||||
def main():
|
||||
print("Hallo von Python")
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
14
teil20/mybang
Executable file
14
teil20/mybang
Executable file
@@ -0,0 +1,14 @@
|
||||
#! /usr/bin/bash
|
||||
# Datei: mybang
|
||||
|
||||
echo "0:${0}"
|
||||
echo "1:${1}"
|
||||
echo "2:${2}"
|
||||
|
||||
if [[ "${USER}" == "pi" ]]; then
|
||||
echo "User pi darf python ausführen."
|
||||
python ${1}
|
||||
else
|
||||
echo "Du darfst kein Python ausführen."
|
||||
fi
|
||||
|
1
teil21/.gitignore
vendored
Normal file
1
teil21/.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
*.bak
|
2
teil21/commandlist.txt
Normal file
2
teil21/commandlist.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
s/Simpson/Thompson/
|
||||
s/Flanders/Flunders/
|
1
teil21/commands.txt
Normal file
1
teil21/commands.txt
Normal file
@@ -0,0 +1 @@
|
||||
echo "Hello" | sed 's/Hello/Bye/'
|
16
teil21/families.txt
Normal file
16
teil21/families.txt
Normal file
@@ -0,0 +1,16 @@
|
||||
Simpson, Marge
|
||||
Simpson, Homer
|
||||
Simpson, Maggie
|
||||
Simpson, Lisa
|
||||
Simpson, Bart
|
||||
|
||||
#FLANDERS-START
|
||||
Flanders, Maude
|
||||
Flanders, Ned
|
||||
Flanders, Rod
|
||||
Flanders, Todd
|
||||
#FLANDERS-END
|
||||
|
||||
Wiggum, Sarah
|
||||
Wiggum, Clancy
|
||||
Wiggum, Ralph
|
Reference in New Issue
Block a user