CLH-006

File Operations

< Script House
operator@shadow:~
[SYSTEM] File operations module loaded
[MISSION] Establish a secure operations directory structure
> Mission: Create, copy, move, and manage operational files
Type help for available commands.
operator@shadow:~$

CURRENT OBJECTIVE

OPERATIONS BRIEFING

The Mission

Every operation needs organized file management. You'll create a secure directory structure, manage files, and clean up traces.

mkdir - Create Directories

$ mkdir operations
Creates a new directory

touch - Create Files

$ touch report.txt
Creates empty file or updates timestamp

cp - Copy Files

$ cp source.txt destination.txt
Copy file to new location

mv - Move/Rename

$ mv old.txt new.txt
Rename or relocate files

rm - Remove Files

$ rm file.txt
Delete file permanently
CAUTION:

rm is permanent! There's no recycle bin in Linux.

PRO TIP:

Use rm -i for interactive mode.