dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

git-ls (184B)


      1 #!/bin/sh
      2 for file in $(git ls-files "${1:-.}"); do
      3   data="$(git log -1 --pretty=format:'%an,%h,%ar (%aI)' -- "$file")"
      4   printf "$file,$data\n"
      5 done | column --table --separator ','