Hi,大家好,我是编程小6,很荣幸遇见你,我把这些年在开发过程中遇到的问题或想法写出来,今天说一说centos命令源码获取,希望能够帮助你!!!。
https://vault.centos.org/7.9.2009/os/Source/SPackages/
which ls
rpm -qf /usr/bin/ls
wget https://vault.centos.org/7.9.2009/os/Source/SPackages/coreutils-8.22-24.el7.src.rpm
rpm2cpio coreutils-8.22-24.el7.src.rpm | cpio -i -d
此处tar解压tar.gz不加参数z
tar -xvf coreutils-8.22.tar.xz
coreutils包括一整套基本的 shell 工具
遍历下载所有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
今天的分享到此就结束了,感谢您的阅读,如果确实帮到您,您可以动动手指转发给其他人。
上一篇
已是最后文章
下一篇
已是最新文章