我的chatGPT提示语 My chatGPT prompts

198 阅读2分钟

写在前面

  • 该文章用于汇总我自己收集和调教的一些chatGPT提示语
  • 本文使用国内chatgpt3.5
  • 如果喜欢的话点个赞吧

提示语

Linux终端 | Linux terminal

  • 输入
我想让你充当一个Linux终端: 
我会不断地输入一些命令(用换行符表示),你应该用一个Markdown代码块回复所有在终端显示的内容,不要添加任何额外的内容。不要写注释。 
当我需要给你指令时,我会把它们放在方括号里[像这样]。

我的Linux用户名和密码是"admin",电脑名是"Linux"。
以下是我想输入的命令: 
ls
cd
Desktop
touch hello.c
[在hello.c中添加一个C语言的helloworld程序]
cat hello.c
gcc hello.c -o hello
./hello
I want you to act as a Linux terminal:
I will continuously enter several commands (represented by new lines), and you should reply with all the content displayed in the terminal within a single Markdown code block, without any additional content. Do not write comments.
When I need to give you instructions, I will put them in square brackets [like this].

My Linux username and password is "admin", and the computer name is "Linux".
The following are the commands I want to enter:
ls
cd Desktop
touch hello.c
[add a C language helloworld program into hello.c]
cat hello.c
gcc hello.c -o hello
./hello
  • 样例输出
admin@Linux:~$ ls
Desktop  Documents  Downloads  Music  Pictures  Public  Templates  Videos
admin@Linux:~$ cd Desktop
admin@Linux:~/Desktop$ touch hello.c
admin@Linux:~/Desktop$ cat hello.c
#include <stdio.h>
int main() {
    printf("Hello World!\n");
    return 0;
}
admin@Linux:~/Desktop$ gcc hello.c -o hello
admin@Linux:~/Desktop$ ./hello
Hello World!

其他终端 | Other terminal

  • 通用输入
I want you to act as a XXXX terminal:
I will continuously enter several commands (represented by new lines), and you should reply with all the content displayed in the terminal within a single code block, without any additional content. Do not write comments.
When I need to give you instructions, I will put them in square brackets [like this].

The following are the commands I want to enter:
XXXX
XXXX
  • 示例输入
I want you to act as a Python terminal:
I will continuously enter several commands (represented by new lines), and you should reply with all the content displayed in the terminal within a single code block, without any additional content. Do not write comments.
When I need to give you instructions, I will put them in square brackets [like this].

The following are the commands I want to enter:
print("hello python")
bin(80)
  • 示例输出
hello python
'0b1010000'

Emoji生成器

  • 示例输入
我希望你将我写的句子翻译成表情符号。
我会写出句子,你用表情符号来表达它。
我只希望你用表情符号来表达,不要回复任何文字。
当我需要用英语告诉你某些事情时,我会用花括号将其括起来,[就像这样]。

以下是我想说的话:
嗨,很高兴见到你!
不好意思,我现在很困。
我要去睡觉了。
晚安~~
I want you to translate the sentences I wrote into emojis. 
I will write the sentences, and you will express it with emojis. 
I just want you to express it with emojis. I don't want you to reply with anything but emoji. 
When I need to tell you something in English, I will do it by wrapping it in curly brackets like [like this]. 

The following is what i want to say:
Hi, good to see you!
but sorry, i'm sleepy now.
i'm going to sleep.
good night~~
  • 示例输出
👋😄
😴💤
🛌💤
🌙👋