wiki created

This commit is contained in:
marcos.luna
2025-11-06 12:23:49 +01:00
parent 6cd3511962
commit 2fe9fa8254
60 changed files with 5012 additions and 142 deletions
@@ -0,0 +1,46 @@
# cd - Change Directory
Change the current working directory for the agent.
## Description
The `cd` command changes the current working directory for the agent. The new directory is automatically tracked and displayed in the Mythic UI context tabs.
## Syntax
```
cd <path>
```
## Parameters
- `path` (required): Directory path to change to. Supports both absolute and relative paths.
## Examples
```
cd C:\Users\Administrator
cd ..
cd Documents
```
## Features
- The new directory is automatically tracked and displayed in the Mythic UI context tabs
- Supports both absolute paths (e.g., `C:\Windows\System32`) and relative paths
- The current directory is used by other file system commands when relative paths are provided
## Output
```
Changed directory to: C:\Users\Administrator
```
## Related
[Context Tracking](../../../features.md#context-tracking)
---
**Command Category:** File System
**Requires Admin:** No