gdritter repos GRUtils / master scripts / git-ls-untracked-sources
master

Tree @master (Download .tar.gz)

git-ls-untracked-sources @masterraw · history · blame

1
2
3
4
5
6
7
#!/bin/bash -e

if [[ $# -eq 1 ]]; then cd $1; fi

for f in $(git ls-files --others --exclude-standard); do
    if [[ ! -x "$f" ]]; then echo $f; fi
done