Bash commands 1 Flashcards

Learning basic bash commands

1
Q

Wie kann man das Arbeitsverzeichnis anzeigen?

A

pwd (print working directory)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Wie findet man heraus, in welchem Verzeichnis man sich gerade befindet?

A

pwd

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Wie kann ich Verzeichnisse ändern?

A

cd

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Wie wechsle ich in das Stammverzeichnis?

A

cd ~ OR ONLY cd

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Wie kann ich einen Ordner nach oben navigieren?

A

cd ..
cd ../.. goes up two levels
cd ../../.. goes up three levels

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Wie kann ich zwei Ordner nach oben navigieren?

A

cd ../..

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Wie navigiere ich zum Home-Verzeichnis?

A

cd ~ OR cd

Combining paths: cd ~/Desktop/
cd ~ first takes you to the home directo

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Wie liste ich den Inhalt eines Verzeichnisses auf?

A

ls

list directory contents

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Wie zeige ich versteckte Dateien in einem Verzeichnis an?

A

ls -a

list all, including hidden files (those starting with a dot)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Wie sortiere ich Dateien nach Änderungszeit?

A

ls -t

sort by modification time

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Wie zeige ich Dateien in umgekehrter Reihenfolge nach Änderungszeit sortiert an?

A

ls -tr

sort by modification time, reversed

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Wie zeige ich Dateien ohne Farbanzeige an, auch versteckte Dateien?

A

ls -a –color=never

list all files without color highlighting

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Wie zeige ich Dateien in umgekehrter Reihenfolge an?

A

ls -r

list items in reverse order

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Wie definiert man einen absoluten Pfad in Linux?

A

Ein absoluter Pfad beginnt mit / und zeigt den vollständigen Speicherort einer Datei oder eines Verzeichnisses an.

absolute path starts from the root directory /
- Always starts with a forward slash (/)
- Works from any location in the file system
- Never uses relative references like . or ..
- Are unambiguous - they point to exactly one location
- Longer to type but more precise and reliable

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Wie definiert man einen relativen Pfad in Linux?

A

Ein relativer Pfad zeigt den Speicherort relativ zum aktuellen Arbeitsverzeichnis an und beginnt nicht mit /.

relative path starts from the current directory

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Wie sieht ein absoluter Pfad aus?

A

/home/john/Documents/file.txt

starts with / and specifies the full location

17
Q

Wie sieht ein relativer Pfad aus?

A

Ein Beispiel für einen relativen Pfad: Documents/file.txt (wenn das aktuelle Verzeichnis /home/john ist)

does not start with / and depends on the current directory

18
Q

Wann sollte man einen absoluten Pfad verwenden?

A

Wenn man immer denselben Speicherort erreichen möchte, unabhängig vom aktuellen Arbeitsverzeichnis

Are safer in scripts because they always point to the same location

19
Q

Wann ist ein relativer Pfad praktisch?

A

Ein relativer Pfad ist praktisch für kurze Navigationen, wenn man den aktuellen Standort kennt