Skip to content

Latest commit

 

History

History
43 lines (28 loc) · 942 Bytes

task-4-running-your-first-few-commands.md

File metadata and controls

43 lines (28 loc) · 942 Bytes

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" %}

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

{% endcode %}

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

Reveal Flag 🚩

🚩echo TryHackMe

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

{% code title="whoami" %}

tryhackme@linux1:~$ whoami

{% endcode %}

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

Reveal Flag 🚩

🚩tryhackme