dotfiles

<-- duh.
git clone https://hhvn.uk/dotfiles
git clone git://hhvn.uk/dotfiles
Log | Files | Refs | Submodules | LICENSE

find (207B)


      1 #!/bin/sh
      2 
      3 export IFS=$(printf "\n\t")
      4 git=$(git ls-files)
      5 find=$(find $git "$@" 2>/dev/null | sed 's~^./~~')
      6 
      7 printf "$find\n$git\n" | sort | uniq -c | awk '$1 > 1 {$1=""; print}' | sed 's/^[[:space:]]*//'