Skip to content

Latest commit

 

History

History
executable file
·
66 lines (54 loc) · 2.19 KB

README.md

File metadata and controls

executable file
·
66 lines (54 loc) · 2.19 KB

Other cheat sheets:

useful tools:

collaboration whiteboard drawing

diagram drawing

markdown

regular expressions

stream editor

online coding

visual database ide

password storage

REST api test framework


useful search function for using whole cheat sheet

function cheat-grep(){
    if [[ $1 == "" ]]; then
        echo "nothing to search"
        return;
    fi

    search_line=""
    for each_input_arg in "$@"; do
        if [[ $search_line == "" ]]; then
            search_line=$each_input_arg
        else
            search_line=$search_line".*"$each_input_arg
        fi
    done

    grep -r $search_line -i -A 2 $HOME_PROJECTS/cheat-sheet/*.md $HOME_PROJECTS/bash-example/*
}