This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apt-get purge openjdk-8-jre-headless | |
| wget https://launchpad.net/~openjdk-r/+archive/ubuntu/security-deletedppa/+build/16691000/+files/openjdk-8-jre-headless_8u212-b03-0ubuntu1.16.04.1_amd64.deb | |
| apt-get install ca-certificates-java | |
| dpkg -i openjdk-8-jre-headless_8u212-b03-0ubuntu1.16.04.1_amd64.deb | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # we'll write all git versions of the file to this folder: | |
| EXPORT_TO=/tmp/all_versions_exported | |
| # take relative path to the file to inspect | |
| GIT_PATH_TO_FILE=$1 | |
| # ---------------- don't edit below this line -------------- |
OlderNewer