AcademyTerminal Tactics: Survival in the ShellPhase 1: Shadow Navigation

File Surgery: Modifying Reality

Being an operative isn't just about looking. It's about acting. You need to know how to move, copy, and scan data with precision.

The Surgical Kit

  • mkdir: Build a new structure (Directory).
  • mv: Move or rename your cargo.
  • cp: Clone data (Copy).
  • grep: The sonic scanner. It finds text in a sea of data.

Mission Briefing

A messy asset left an app.log file in the open. If an enemy finds it, our mission is compromised. We need to move it to a secure location and scan for any system "breaches" (errors).

booting...

Tactical Objectives

  1. Build a Vault: Create a folder named logs.
  2. Relocate Cargo: Move the app.log file into your new logs folder.
  3. Perform a Scan: Use grep "ERROR" logs/app.log to see if the system was breached.

Tactical Intel

In the field, grep is your best friend. If you’re looking for a needle in a haystack, grep is the magnet. Use it to find IP addresses, passwords, or error codes in massive log files.

Mission Control

Create a Tactical Ops Room

Expected Command

mkdir logs

Relocate Intel to the Ops Room

Scan for System Breaches