Skip to content

Instantly share code, notes, and snippets.

View rrugge's full-sized avatar

Rudra Rugge rrugge

  • Juniper Networks
View GitHub Profile
# C-b is not acceptable -- Vim uses it
set-option -g prefix `
bind-key ` last-window
# Start numbering at 1
set -g base-index 1
# Allows for faster key repetition
set -s escape-time 0
#!/bin/bash
GREEN='\033[0;32m'
CYAN='\033[0;36m'
NOCOLOR='\033[0m'
filename="$1"
cat "$filename" | while read LINE
do
if [[ $LINE == \#* ]] ;