diff --git a/inbc-program/README.md b/inbc-program/README.md index 5b39bcc45..b78943704 100644 --- a/inbc-program/README.md +++ b/inbc-program/README.md @@ -427,7 +427,7 @@ This list file is used during 'sudo apt update' to update the application. ### Usage ``` inbc source application add - {--sources, -s=SOURCES} + {--sources, -s SOURCES} {--filename, -f=FILENAME} [--gpgKeyUri, -gku=GPG_KEY_URI] [--gpgKeyName, -gkn=GPG_KEY_NAME] @@ -527,7 +527,7 @@ NOTE: Currently this only works on Ubuntu ``` inbc source application update {--filename, -f=FILEPATH} - {--sources, -s=SOURCES} + {--sources, -s SOURCES} ``` ### Examples @@ -560,14 +560,14 @@ Appends new source(s) to the /etc/apt/sources.list file ### Usage ``` inbc source os add - {--sources, -s=SOURCES} + {--sources, -s SOURCES} ``` ### Example #### Adds two sources ``` inbc source os add - --sources="deb http://archive.ubuntu.com/ubuntu/ jammy-security main restricted" "deb http://archive.ubuntu.com/ubuntu/ jammy-security universe" + --sources "deb http://archive.ubuntu.com/ubuntu/ jammy-security main restricted" "deb http://archive.ubuntu.com/ubuntu/ jammy-security universe" ``` ## SOURCE OS REMOVE @@ -577,14 +577,14 @@ Removes the provided source(s) from the /etc/apt/sources.list file, if ### Usage ``` inbc source os remove - {--sources, -s=SOURCES} + {--sources, -s SOURCES} ``` ### Example #### Removes the two provided source(s) from the /etc/apt/sources.list file ``` inbc source os remove - --sources="deb http://archive.ubuntu.com/ubuntu/ jammy-security main restricted" "deb http://archive.ubuntu.com/ubuntu/ jammy-security universe" + --sources "deb http://archive.ubuntu.com/ubuntu/ jammy-security main restricted" "deb http://archive.ubuntu.com/ubuntu/ jammy-security universe" ``` ## SOURCE OS UPDATE @@ -594,14 +594,14 @@ Creates a new /etc/apt/sources.list file with only the sources provided ### Usage ``` inbc source os update - {--sources, -s=SOURCES} + {--sources, -s SOURCES} ``` ### Example #### Creates a new /etc/apt/sources.list file with only the two provided sources ``` inbc source os update - --sources="deb http://archive.ubuntu.com/ubuntu/ jammy-security main restricted" "deb http://archive.ubuntu.com/ubuntu/ jammy-security universe" + --sources "deb http://archive.ubuntu.com/ubuntu/ jammy-security main restricted" "deb http://archive.ubuntu.com/ubuntu/ jammy-security universe" ``` ## SOURCE OS LIST