Skip to content

Instantly share code, notes, and snippets.

@ob1-sc
Last active March 31, 2025 11:12
Show Gist options
  • Save ob1-sc/a5582834a19b92a25cc487f0fabe4ddc to your computer and use it in GitHub Desktop.
Save ob1-sc/a5582834a19b92a25cc487f0fabe4ddc to your computer and use it in GitHub Desktop.
download and install om cli

set om release url and install path

export OM_RELEASE=https://github.com/pivotal-cf/om/releases/download/7.15.0/om-linux-amd64-7.15.0
export OM_INSTALL_LOCATION=$HOME/.local/bin

install with curl

curl -o om -L $OM_RELEASE && chmod +x om && mv om $OM_INSTALL_LOCATION

install with wget

wget -O om $OM_RELEASE && chmod +x om && mv om $OM_INSTALL_LOCATION
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment