Please enable JavaScript.
Coggle requires JavaScript to display documents.
Linux Unhatched (Basic Command Syntax (Pattern: command [options…]…
Linux Unhatched
Basic Command Syntax
-
-
A command is a software program that when executed on the CLI (command line interface), performs an action on the computer
-
-
Creating, Moving, and Deleting Files
-
Copying Files
-
Permissions
execute permission to access the directory where the file is located and the read permission for the file being copied
-
dd [OPTIONS] OPERAND
-
-
It can be used to copy raw data to removable devices, such as USB drives and CDROMs.
-
It can be used to create a file of a specific size that is filled with binary zeros, which can then be used as a swap file (virtual memory)
-
-
Removing Files
-
deleted files and directories do not go into a "trash can" as with desktop-oriented operating systems.
-
Permissions
To delete a file within a directory, a user must have write and execute permission on a directory
Regular users typically only have this type of permission in their home directory and its subdirectories.
-
-
-
Viewing files, searching and extracting Data from Files
-
Filtering inputs
Grep
The grep command is a text filter that will search input and return lines which contain a match to a given pattern.
-
-