运行环境
Ubuntu 18.04.5 LTS (GNU/Linux 4.15.0-122-generic x86_64)
运行命令
pwd
- Print current working directory
作用: 打印当前终端所在的目录
用法: pwd
tree
安装tree命令
install-tree.sh
#!/bin/bash
wget http://mama.indstate.edu/users/ice/tree/src/tree-1.7.0.tgz
tar -zxvf tree-1.7.0.tgz
ls
cd tree-1.7.0
ls
make install
tree
运行tree命令
tree ~ > tree_root.txt
head tree_root.txt
man
an interface to the system reference manuals
作用: 包含了Linux中全部命令手册
用法: man [命令]
含义: 查看命令使用手册,按 q 退出
# 查看ls命令的手册
man ls
# 查看cd命令的手册
# man cd
help cd
# 查看man命令的手册
man man
reboot
-
reboot the machine
作用: 重启linux系统
用法:reboot
shutdown - power-off the machine
作用: 关机
用法: shut -h [时间]
# 立即关机
shutdown -h now
vim
设置tab键为4个空格
:set ts=4
hello.cpp
#include<iostream>
using namespace std;
int main(){
cout<<"hello world"<<endl;
return 0;
}
编译命令
g++ hello.cpp -o hello
./hello
详细用法见下图