Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 313 Bytes

memo.md

File metadata and controls

19 lines (16 loc) · 313 Bytes

zaw cheat sheet

  • zaw
    • ^gz zaw
    • ^gb zaw-git-recent-all-branches
    • ^r zaw-history
    • ^gc zaw-cdr

ansi 256 color list

for ((i = 0; i < 16; i++)); do
    for ((j = 0; j < 16; j++)); do
        hex=$(($i*16 + $j))
        printf '\e[38;5;%dm%03d\e[m ' $hex $hex
    done
    echo "";
done