linux
unspoken0714
这个作者很懒,什么都没留下…
展开
-
CMakeLists实战学习
单个源文件 这时的源文件 #include <stdio.h> #include <stdlib.h> /** * power - Calculate the power of number. * @param base: Base value. * @param exponent: Exponent value. * * @return base raised to the power exponent. */ double power(double base, in原创 2020-12-22 22:57:59 · 385 阅读 · 0 评论 -
VSCode在linux下的实战
源文件 Gun.h #pragma once #include <string> class Gun { private: /* data */ int bullet_count; std::string type; public: Gun(std::string type){ this->bullet_count = 0; this->type = type; } void addBullet(in原创 2020-10-30 22:22:06 · 173 阅读 · 0 评论 -
Linux常见命令
pwd 当前位置 cd … 返回上级目录 cd ./xx 进入xx文件夹, ./表示当前路径后的路径 cd ~/xx 进入xx文件夹, ./表示当根径后的路径 mkdir xx 创建xx文件夹 mkdir -p xx/yy 创建含有子目录的文件夹 –h or --help 可以查看帮助 mkdir --h 查看mkdir帮助 rm 移除操作 rm -r 删除[recursive] remove file or folder cp -r source distination复制 cp -r hello he.原创 2020-10-24 16:01:50 · 103 阅读 · 0 评论