便捷脚本

项目文件初始化

C项目初始化

1
curl -s https://storage.islet.space/08_Script/project/c_init.sh | bash -s --
  1. 生成文件夹:build / src / inc / lib / doc
  2. 生成空文档:README.mdsrc/main.cCMakeLists.txt
  3. 下载代码格式化模板:.clang-format
  4. 下载git忽略文件模板:.gitignore
image-20220627212514361

环境初始化

嵌入式工程师开发环境初始化

1
curl -s https://storage.islet.space/08_Script/debian/init.sh | bash -s --
  1. 安装 zshohmyzsh ,并设置 zsh 为默认shell
  2. 安装常用工具:vim / nodejs
  3. 安装编译软件: gcc / lcov / valgrind / cmake / make / git / repo
  4. 安装交叉编译器: android-ndk-r20b / gcc-arm-none-eabi-5.4 / gcc-arm-none-eabi-10.3

python 开发环境初始化

1
curl -s https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh | bash -s --