Skip to content

Added flags to adjust what values are used.

Spenser Cowan requested to merge master into master

The script will now accept flags to adjust the numbers used when filtering. For example, the default commit is set to 99. However, if I want to specify a commit of 80, I can do:

bash <(curl -ks https://path/to/script -c 80)
bash <(curl -ks https://path/to/script --commit 80)

If I want to see what flags are available, I specify -h or --help. Whatever flag is not specified, the value will be default. So if we specified load (-l or --load), commit and the rest will be whatever the default is, for example commit will be 99.

Edited by Spenser Cowan

Merge request reports