> For the complete documentation index, see [llms.txt](https://digitalgarden.batamladen.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://digitalgarden.batamladen.com/notes/certificates/cpts/nmap/saving-the-results.md).

# Saving The Results

{% tabs %}
{% tab title="Flags" %} <mark style="color:orange;">**-oN**</mark> - .nmap file extension (normal output)

<mark style="color:orange;">**-oG**</mark> - .gnmap file extension (grepable output)

<mark style="color:orange;">**-oX**</mark> - .xml nmap extension (XML output)

<mark style="color:orange;">**-oA**</mark> - save result in all of formats
{% endtab %}
{% endtabs %}

## save results in all formats

```bash
sudo nmap 10.129.2.28 -oA {set file name} {define file path}
```

{% hint style="warning" %} <mark style="color:orange;">note:</mark> if no path is specified, nmap will save results in current directory
{% endhint %}

## Convert .XML file to HTML page using xsltproc

```bash
xsltproc target.xml -o target.html
```

{% hint style="warning" %}
note: open the file with browser to see a nice html page
{% endhint %}

## Open a file with browser through terminal

```bash
xdg-open {filename.html} firefox
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://digitalgarden.batamladen.com/notes/certificates/cpts/nmap/saving-the-results.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
