diff --git a/README.md b/README.md
index bcfb7e7a..627502b9 100644
--- a/README.md
+++ b/README.md
@@ -12,24 +12,24 @@
## Arguments
-| Flag | Example | Parameter | Description |
-|----------------- |------------------------ |----------- |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| --self-update | --self-update | None | Updates HeavyScript prior to running it
_You no longer need to git pull_ |
-| --delete-backup | --delete-backup | None | Opens a menu to delete backups
_Useful if you need to delete old system backups or backups from other scripts_ |
-| --restore | --restore | None | Restore HeavyScript specific `ix-applications dataset` snapshot |
-| --mount | --mount | None | Initiates mounting feature
Choose between unmounting and mounting PVC data |
-| --dns | --dns | None | list all of your applications DNS names and their web ports |
-| -U | -U | None | Update applications, ignoring major version changes |
-| -u | -u | None | Update applications, do NOT update if there was a major version change |
-| -b | -b 14 | Integer | Backup `ix-appliactions` dataset
_Creates backups up to the number you've chosen_ |
-| -i | -i nextcloud -i sonarr | String | Applications listed will be ignored during updating
_List one application after another as shown in the example_ |
-| (-R\|-r) | -r | None | Monitors applications after they update
If the app does not become "ACTIVE" after either:
The custom Timeout, or Default Timeout,
rollback the application.
__Warning: deprecating `-R` please begin using `-r` instead__ |
-| -v | -v | None | Verbose Output
_Look at the bottom of this page for an example_ |
-| -S | -S | None | Shutdown the application prior to updating it |
-| -t | -t 150 | Integer | Set a custom timeout to be used with either:
`-m`
_Time the script will wait for application to be "STOPPED"_
or
`-(u\|U)`
_Time the script will wait for application to be either "STOPPED" or "ACTIVE"_ |
-| -s | -s | None | Sync Catalogs prior to updating |
-| -p | -p | None | Prune old/unused docker images |
-
+| Flag | Example | Parameter | Description |
+|----------------- |------------------------ |----------------- |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| NULL | NULL | NULL | If you choose not to supply an option, it will open the menu for easier access to the utilities |
+| --self-update | --self-update | None | Updates HeavyScript prior to running it
_You no longer need to git pull_ |
+| --delete-backup | --delete-backup | None | Opens a menu to delete backups
_Useful if you need to delete old system backups or backups from other scripts_ |
+| --restore | --restore | None | Restore HeavyScript specific `ix-applications dataset` snapshot |
+| --mount | --mount | None | Initiates mounting feature
Choose between unmounting and mounting PVC data |
+| --dns | --dns | None | list all of your applications DNS names and their web ports |
+| -U | -U
-U 5 | None or Integer | Update applications, ignoring major version changes
_Optionally, you can supply a number after the argument to update multiple applications at once_ |
+| -u | -u
-u 5 | None or Integer | Update applications, do NOT update if there was a major version change
_Optionally, you can supply a number after the argument to update multiple applications at once_ |
+| -b | -b 14 | Integer | Backup `ix-appliactions` dataset
_Creates backups up to the number you've chosen_ |
+| -i | -i nextcloud -i sonarr | String | Applications listed will be ignored during updating
_List one application after another as shown in the example_ |
+| -r | -r | None | Monitors applications after they update
If the app does not become "ACTIVE" after either:
The custom Timeout, or Default Timeout,
rollback the application. |
+| -v | -v | None | Verbose Output
_Look at the bottom of this page for an example_ |
+| -S | -S | None | Shutdown the application prior to updating it |
+| -t | -t 150 | Integer | Set a custom timeout to be used with either:
`-m`
_Time the script will wait for application to be "STOPPED"_
or
`-(u\|U)`
_Time the script will wait for application to be either "STOPPED" or "ACTIVE"_ |
+| -s | -s | None | Sync Catalogs prior to updating |
+| -p | -p | None | Prune old/unused docker images |
@@ -37,7 +37,7 @@
### Examples
#### Typical Cron Job
```
-bash heavy_script.sh --self-update -b 14 -i portainer -i arch -i sonarr -i radarr -t 600 -rsup
+bash heavy_script.sh --self-update -b 14 -i portainer -i arch -i sonarr -i radarr -t 600 -rsp -u 5
```
> `-b` is set to 14. Up to 14 snapshots of your ix-applications dataset will be saved
@@ -50,10 +50,11 @@ bash heavy_script.sh --self-update -b 14 -i portainer -i arch -i sonarr -i radar
> `-s` will just sync the repositories, ensuring you are downloading the latest updates.
-> `-u` update applications as long as the major version has absolutely no change, if it does have a change it will ask the user to update manually.
-
> `-p` Prune docker images.
+> `-u` update applications as long as the major version has absolutely no change, if it does have a change it will ask the user to update manually.
+> The `5` after the `-u` means up to 5 applications will be updating and monitored at one time
+
> `--self-update` Will update the script prior to running anything else.
#### Mounting PVC Data
@@ -82,7 +83,7 @@ bash /mnt/tank/scripts/heavy_script/heavy_script.sh --dns
#### My personal Cron Job
```
-bash /mnt/speed/scripts/heavy_script/heavy_script.sh --self-update -b 14 -rsup
+bash /mnt/speed/scripts/heavy_script/heavy_script.sh --self-update -b 14 -rsp -u 10
```