centos命令源码获取

(3) 2024-05-05 18:12

Hi,大家好,我是编程小6,很荣幸遇见你,我把这些年在开发过程中遇到的问题或想法写出来,今天说一说centos命令源码获取,希望能够帮助你!!!。

源码链接

https://vault.centos.org/7.9.2009/os/Source/SPackages/

查看本地命令版本

which ls
rpm -qf /usr/bin/ls

centos命令源码获取_https://bianchenghao6.com/blog__第1张

下载指定命令的rpm包

wget https://vault.centos.org/7.9.2009/os/Source/SPackages/coreutils-8.22-24.el7.src.rpm

centos命令源码获取_https://bianchenghao6.com/blog__第2张

提取源码

rpm2cpio coreutils-8.22-24.el7.src.rpm | cpio -i -d

centos命令源码获取_https://bianchenghao6.com/blog__第3张
此处tar解压tar.gz不加参数z

tar -xvf coreutils-8.22.tar.xz

查看源码

coreutils包括一整套基本的 shell 工具
centos命令源码获取_https://bianchenghao6.com/blog__第4张
遍历下载所有rpm包
可以用来模拟高负载

#!/bin/bash

rpmUrlPath=https://vault.centos.org/7.9.2009/os/Source/SPackages/
rpmFile=/rssp/code/index.html
if [ -f  $rpmFile ]
then
	rm -rf $rpmFile
fi
wget $rpmUrlPath
rpmListFile=/rssp/code/rpm_list.txt
if [ ! -f $rpmListFile ] 
then
	touch $rpmListFile
fi

cat index.html | grep -Eo ">.*.src.rpm"|awk 'BEGIN{FS=">"} {print $7}' > rpm_list.txt
for line in `cat $rpmListFile`
do
    wget -bc ${ 
   rpmUrlPath}$line
done

今天的分享到此就结束了,感谢您的阅读,如果确实帮到您,您可以动动手指转发给其他人。

上一篇

已是最后文章

下一篇

已是最新文章

发表回复