Skip to content
Advertisement

How to make an autoinstall command script for Debian

So I was working on a project that need some libraries . so I decided to made an .sh script to just install all at once but I don’t know why it fails . I was searching about it , but just found how to create installer like .deb , etc here are the commands lines that I use

install.sh

JavaScript

using

JavaScript

and I got this , I think that I’m doing just a few things wrong , I think

JavaScript

Can someone help me please

Advertisement

Answer

Your shebang at the beginning of your script is for a boot script

You’re using:

JavaScript

When this script should call the bash environment with:

JavaScript

That should solve your problem.

As sergio states these can be done in one liners like:

JavaScript

At the very least utilize an array for more efficient bash programming like this:

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement