
bash
文章平均质量分 93
yaoxinJJJ
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
QEMU 安装与使用
这里写自定义目录标题下载并安装qemu 下载并安装qemu 下载 git clone https://gitlab.com/qemu-project/qemu.git 安装 #!/bin/bash rm -rf build mkdir build cd build sudo apt-get install build-essential zlib1g-dev pkg-config libglib2.0-dev binutils-dev libboost-all-dev autoconf原创 2022-02-01 02:39:16 · 5350 阅读 · 1 评论 -
Bash basic
Bash hello world Create a .sh file emac task.sh Add some commands #!/bin/bash echo "Hello World" 给 task.sh 添加 executable 属性 By default, any newly created files are not executable regardless of its file extension suffix. chmod +x task.sh 执行 ./原创 2021-12-19 04:04:52 · 219 阅读 · 0 评论