summaryrefslogtreecommitdiff
path: root/me
blob: 46e82157a54dccf94238c5a0f3c8b147519dbedf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env sh

# FIXME: replace ~/me with ~/docs

cur=$PWD

for d in ~/config/ ~/org/ ~/web/ ~/bin/ ~/.password-store/ ~/me/
do
    cd "${d}"

    dirname=${d/\/home\/ben/\~}
    status=$(unbuffer git status -sb | tr -d '#')
    printf "%-20s: %s\n\n" "${dirname}" "${status}"
done

cd "${cur}"