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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
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/zsh | |
set -euo pipefail | |
IFS=$'\n\t' | |
# i tried it and working like charm just have to note make the file .sh chmod +x and you may need sudo to run with permission but be carefull with sudo | |
# be sure the $JAVA_HOME is configure correctly or make it static as commentedline 7 below | |
OLDDIR="${PWD}" | |
CACERTS_FILE=$(/usr/libexec/java_home -v 1.8)/jre/lib/security/cacerts | |
mkdir /tmp/rds-ca && cd /tmp/rds-ca |