Premium Partner

Basic Shell Commands

Practice how to use the shell in Linux

Practice how to use the shell in Linux


Kartei Details

Karten 58
Lernende 22
Sprache English
Kategorie Informatik
Stufe Andere
Erstellt / Aktualisiert 11.02.2017 / 31.10.2023
Lizenzierung Keine Angabe
Weblink
https://card2brain.ch/box/20170211_basic_shell_commands
Einbinden
<iframe src="https://card2brain.ch/box/20170211_basic_shell_commands/embed" width="780" height="150" scrolling="no" frameborder="0"></iframe>

Access folder

cd folder

Absolute path of current directory

pwd

Access parent directory

cd ..

Access home directory

cd

List files in current directory

ls

List files in folder1 and folder2

ls folder1 folder2

List all files in current directory (also hidden files)

ls -a

List all files in current directory as a detailed list

ls -l