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 | |
| if [ ! -d "$1" ]; then | |
| echo "usage: $0 <directory>"; | |
| exit 1; | |
| fi | |
| echo '' > "$1_viewer.html" | |
| cat >> "$1_viewer.html" <<'EOF' | |
| <html> | |
| <head> |
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
| # | |
| # Based on https://hub.docker.com/_/sonarqube | |
| # | |
| version: "3.7" | |
| services: | |
| sonarqube: | |
| container_name: sonarqube |
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
| # TEXT aliases | |
| alias v="vim" | |
| alias em="emacs" | |
| # GIT ALIASES | |
| alias g=git | |
| alias glog="git lg" | |
| alias gsquash="git squash" |