- Jun 13, 2000
- 26,391
- 1,780
- 126
I've never written a bash script before. I want to create a respository with some libraries I need often and script the download/install of them since they have to be done in a certain order. Is it as simple as putting them in a file and giving root execute rights? What syntax is required to script this. Should I put any delays in it? How would I do that?
I'm going to get a book next paycheck. I'm just trying to get started with a few basic scripts for now and will soon be automating anything I have to do more than twice. Thanks.
Here is what I've got t do:
#download
wget compat-gcc-7.3-2.96.128.i386.rpm
wget compat-gcc-c++-7.3-2.96.128.i386.rpm
wget compat-libstdc++-7.3-2.96.128.i386.rpm
wget compat-libstdc++-devel-7.3-2.96.128.i386.rpm
wget glibc-devel-2.3.4-2.43.i386.rpm
wget glibc-headers-2.3.4-2.43.i386.rpm
wget glibc-kernheaders-2.4-9.1.103.EL.i386.rpm
#install
rpm -iv --replacefiles compat-libstdc++-7.3-2.96.128.i386.rpm
rpm -ivh compat-libstdc++-devel-7.3-2.96.128.i386.rpm
rpm -ivh glibc-kernheaders-2.4-9.1.103.EL.i386.rpm
rpm -ivh glibc-headers-2.3.4-2.43.i386.rpm
rpm -ivh glibc-devel-2.3.4-2.43.i386.rpm
rpm -ivh compat-gcc-7.3-2.96.128.i386.rpm
rpm -ivh compat-gcc-c++7.3.2.96.128.i386.rpm
I'm going to get a book next paycheck. I'm just trying to get started with a few basic scripts for now and will soon be automating anything I have to do more than twice. Thanks.
Here is what I've got t do:
#download
wget compat-gcc-7.3-2.96.128.i386.rpm
wget compat-gcc-c++-7.3-2.96.128.i386.rpm
wget compat-libstdc++-7.3-2.96.128.i386.rpm
wget compat-libstdc++-devel-7.3-2.96.128.i386.rpm
wget glibc-devel-2.3.4-2.43.i386.rpm
wget glibc-headers-2.3.4-2.43.i386.rpm
wget glibc-kernheaders-2.4-9.1.103.EL.i386.rpm
#install
rpm -iv --replacefiles compat-libstdc++-7.3-2.96.128.i386.rpm
rpm -ivh compat-libstdc++-devel-7.3-2.96.128.i386.rpm
rpm -ivh glibc-kernheaders-2.4-9.1.103.EL.i386.rpm
rpm -ivh glibc-headers-2.3.4-2.43.i386.rpm
rpm -ivh glibc-devel-2.3.4-2.43.i386.rpm
rpm -ivh compat-gcc-7.3-2.96.128.i386.rpm
rpm -ivh compat-gcc-c++7.3.2.96.128.i386.rpm