# Task 4 - Running Your First few Commands

## Task 4 Running Your First few Commands

### If we wanted to output the text "**TryHackMe**", what would our command be?

{% code title="echo" %}

```bash
tryhackme@linux1:~$ echo "Hello Friend!"
```

{% endcode %}

{% hint style="warning" %}
**HINT:** Remove the quotation marks!
{% endhint %}

<details>

<summary>Reveal Flag <span data-gb-custom-inline data-tag="emoji" data-code="1f6a9">🚩</span></summary>

:triangular\_flag\_on\_post:`echo TryHackMe`

</details>

### What is the username of who you're logged in as on your deployed Linux machine?

{% code title="whoami" %}

```bash
tryhackme@linux1:~$ whoami
```

{% endcode %}

{% hint style="warning" %}
**HINT:** Run the commend whoami in the terminal
{% endhint %}

<details>

<summary>Reveal Flag <span data-gb-custom-inline data-tag="emoji" data-code="1f6a9">🚩</span></summary>

:triangular\_flag\_on\_post:`tryhackme`

</details>
