This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <Python.h> | |
static PyObject *SpamError; | |
static PyObject * | |
spam_system(PyObject *self, PyObject *args) | |
{ | |
const char *command; | |
int sts; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Docker 的常用命令有: | |
1. docker images:列出本地主机上的镜像。示例: | |
bash | |
docker images | |
2. docker ps:列出运行中的容器。示例: | |
bash | |
docker ps | |
3. docker run:运行一个镜像。示例: | |
bash | |
docker run ubuntu echo "Hello world" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.