We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
touch <filename> 创建一个文件 mkdir <dirname> 创建一个文件夹
touch <filename>
mkdir <dirname>
vim <filename> 编辑一个文件
vim <filename>
rm <filename> 删除一个文件 rm -r <dirname> 删除一个目录
rm <filename>
rm -r <dirname>
cd <path> 进入一个文件 cd .. 返回上一级目录 cd / 返回最上级目录
cd <path>
cd ..
cd /
The text was updated successfully, but these errors were encountered:
No branches or pull requests
创建命令
touch <filename>
创建一个文件mkdir <dirname>
创建一个文件夹编辑命令
vim <filename>
编辑一个文件删除命令
rm <filename>
删除一个文件rm -r <dirname>
删除一个目录进入命令
cd <path>
进入一个文件cd ..
返回上一级目录cd /
返回最上级目录The text was updated successfully, but these errors were encountered: