URI:
       tclrd - scripts - random scripts
  HTML git clone https://git.parazyd.org/scripts
   DIR Log
   DIR Files
   DIR Refs
       ---
       tclrd (117B)
       ---
            1 #!/bin/sh
            2 # colorize diffs
            3 
            4 sed -e "s/^-/$(tput setaf 1)-/" \
            5         -e "s/^+/$(tput setaf 2)+/" \
            6         -e "s/$/$(tput sgr0)/"