Shell Commands

Preliminary Our shell is based on the Z Shell, namely zsh, and our OS is based on unix-like system (Linux, macOS, e.t.). Commands Guide find To recursively search for .md (Markdown) files in a directory and its subdirectories, you can use the following find shell command: 1$ find /path/to/search -type f -name "*.md" Replace /path/to/search with the directory you want to search (e.g., . for the current directory). -type f ensures only files are matched. ...

April 1, 2025 · 1 min · 125 words · xxraincandyxx