Skip to content

Instantly share code, notes, and snippets.

@baztian
Last active August 18, 2018 11:59
Show Gist options
  • Save baztian/74c296a04df3426619f1cf9b591d8cc4 to your computer and use it in GitHub Desktop.
Save baztian/74c296a04df3426619f1cf9b591d8cc4 to your computer and use it in GitHub Desktop.
Install Open Liberty to a directory with a more meaningful name
libertyzip=~/Downloads/openliberty-javaee8-*.zip
unzip $libertyzip -d /tmp/liberty
# I'm using ~/Software for additional user specific software
mkdir -p ~/Software/$(basename $libertyzip .zip)/
mv /tmp/liberty/wlp/* ~/Software/$(basename $libertyzip .zip)/
ln -snf $(basename $libertyzip .zip) ~/Software/wlp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment