linux指令

运行环境

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 

在这里插入图片描述

详细用法见下图
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值