fr34k8 / cheat-sheet

collection of cheat sheets

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

cheat sheet

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/*
}

other cheat-tools

Other cheat sheets:

useful tools:

collaboration whiteboard drawing

diagram drawing

markdown

regular expressions

stream editor

online coding

code analyser

code changer

database GUI client

password storage

text/password exchange

REST api test frameworks

About

collection of cheat sheets