一次性创建多个文件

touch test{1..10}_file.txt

一次性创建多个目录

mkdir dir_{1..10}

查看文件的具体类型

vim hello.c
gcc -o hello hello.c
file hello

让一个应用在后台运行(web服务器)

nohup (此处填入命令) &