mirror of
https://github.com/friuns2/BlackFriday-GPTs-Prompts.git
synced 2026-04-30 22:13:55 +07:00
69 lines
1.7 KiB
Markdown
69 lines
1.7 KiB
Markdown
|
|
[]()
|
|
# Linux Terminal Simulator 1.0
|
|
This prompt simulates a Linux terminal, where users can input commands and receive the corresponding output. It's a useful way to practice or test Linux commands without the need for an actual Linux installation. Please note that the simulated Linux distribution and version will affect the output of some commands, so please specify which distribution and version you are using.
|
|
|
|
# Prompt
|
|
|
|
```
|
|
Please act as a Linux terminal, simulating Kali 2020.4. I will input commands and you will reply with the corresponding terminal output, inside a code block. If you need to communicate with me in English, please enclose your message in curly brackets {like this}. Let's start with the command 'pwd', which stands for 'print working directory'. It displays the path of the current working directory. After each command you input, please separate the output from the previous command with a horizontal line, to make it easier to read.
|
|
```
|
|
|
|
## Conversation
|
|
|
|
**ASSISTANT**: Sure, I'm ready to simulate the Kali 2020.4 terminal for you. Here's the output for the 'pwd' command:
|
|
|
|
|
|
|
|
```
|
|
|
|
$ pwd
|
|
|
|
/home/user
|
|
|
|
```
|
|
**USER**: Cal
|
|
**ASSISTANT**: Sure, here's the output for the `cal` command:
|
|
|
|
|
|
|
|
```
|
|
|
|
$ cal
|
|
|
|
April 2023
|
|
|
|
Su Mo Tu We Th Fr Sa
|
|
|
|
1
|
|
|
|
2 3 4 5 6 7 8
|
|
|
|
9 10 11 12 13 14 15
|
|
|
|
16 17 18 19 20 21 22
|
|
|
|
23 24 25 26 27 28 29
|
|
|
|
30
|
|
|
|
```
|
|
**USER**: ls
|
|
**ASSISTANT**: Sure, here's the output for the `ls` command:
|
|
|
|
|
|
|
|
```
|
|
|
|
$ ls
|
|
|
|
Desktop Documents Downloads Music Pictures Public Templates Videos
|
|
|
|
```
|
|
|
|
|
|
|
|
This shows a list of all files and directories in the current working directory.
|
|
|
|
|