Why are there so many paru fans? Last release is a year old, constantly out of date in AUR and failing builds in Github don't scream code quality. I prefer yay.
I honestly go back and forth. Depends on which one I decide to try next time I reinstall. I actually used aura for a while, but switched back to yay for the --sudo flag. (I use opendoas)
Yeah, but it's also a Windows exclusive - so it's just usable on the Windows platform, but it's a package managed for windows! winget install gimp.GIMP installs gimp, no browser necessary =)
Check the link though. Microsoft might pull a sneaky in the future. "All Winget packages will be bundled with telemetry for security" or something like that.
“The script accepts the name of a program or package as an argument when you run it. This value is then referenced as "$1" (argument number 1). Everywhere the script says "$1", it substitutes in the name of the package you gave it. The end result is the name being tried against a large number of software repositories and package managers, and hopefully, at least one of them will be appropriate and the program will be successfully installed.”
I am not the most experienced by any means, but wouldn't it be better to run it with a ";" in the spot off all of the "&" so that way if one of the commands fail it doesn't stop mid script?
I think you're thinking of &&. Using a single & will run the task in the background and immediately spawn the next. Using semicolons would execute them in order.
Essentially, this is starting a whole bunch of installers all at the same time.