Relative Content

Tag Archive for bash

Are these steps enough to put my bash script under GPL 3?

I have written a bash script I would like to put under GPL v3. I’ve read the GNU documentation
on How to Apply These Terms to Your New Programs and How to use GNU licenses for your own software. Still, I’m not quite sure what to put there and which artifacts are needed.

User Configuration of a Shell Script. Best practices?

I am writing a shell script with a few variables that should be configured by the user. There will be an installer for downloading and configuring the script, possibly by asking a series of question. The script in question is aimed at other developers.

A script to use to git fetch to see if git pull is needed then create new archive of directory

The script is to update a group of repos and archives .bz2 of each repo. That uses git fetch to check if git pull is needed, then after each git pull the script backs up the old archive and creates a new one.
I have got it working to a point. Currently it makes new archives, even if git pull has not run. I want it to stop if git pull isn’t needed and move onto next repo.