# 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: 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:

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

The question should be specific, self-contained, and written in natural language.
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.
