Skip to content

Instantly share code, notes, and snippets.

View wahab-io's full-sized avatar
🏕️
Hibernating

Wahab Syed wahab-io

🏕️
Hibernating
View GitHub Profile
@wahab-io
wahab-io / ssl-help.sh
Created March 14, 2019 21:46
Convert empty password PFX file to a password protected PFX file
// convert PFX to PEM
openssl pkcs12 -in mycert.pfx -out temp.pem -nodes
// convert PEM to new PFX
openssl pkcs12 -export -out mycert-new.pfx -in temp.pem
#!/usr/bin/env bash
SCM_THEME_PROMPT_DIRTY=" ${red}✗"
SCM_THEME_PROMPT_CLEAN=" ${bold_green}✓"
SCM_THEME_PROMPT_PREFIX=" ${green}|"
SCM_THEME_PROMPT_SUFFIX="${green}|"
GIT_THEME_PROMPT_DIRTY=" ${red}✗"
GIT_THEME_PROMPT_CLEAN=" ${bold_green}✓"
GIT_THEME_PROMPT_PREFIX=" ${green}|"