> For the complete documentation index, see [llms.txt](https://iptracej.gitbook.io/windows-linux-and-active-directory-ctf-notes/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://iptracej.gitbook.io/windows-linux-and-active-directory-ctf-notes/unix-commands/awk-and-sed.md).

# awk and sed

Set a delimiter and show the output, and then remove a space in the output.

```
awk -F":" '{print $4}' | sed 's/ //g' 
```
