美文网首页Python
Python执行常见的linux命令

Python执行常见的linux命令

作者: dyq666 | 来源:发表于2018-07-31 22:17 被阅读194次

0. 概述

  1. 使用os.system(代表着linux命令的字符串)就能执行linux命令
  2. 因为linux多条命令可由&&拼接成一个字符串,所以先使用join拼接linux命令,再有os.system执行即可

1. 配置yum镜像

import os

yum_images = (
    "yum -y install wget",
    "mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup",
    "cd /etc/yum.repos.d/",
    "wget http://mirrors.163.com/.help/CentOS7-Base-163.repo",
    "yum clean all && yum makecache"
)

os.system("&&".join(yum_images))

相关文章

网友评论

    本文标题:Python执行常见的linux命令

    本文链接:https://www.haomeiwen.com/subject/xmekvftx.html