Closed gpopovic closed 8 years ago
Is it possible to check recursive libraries within folder?
Its just too slow to go from directory to directory
Hi. Nope, there is no such feature, but it can easily be achieved with sh commands, like find.
for i in $(find $GOPATH/src/github.com/divan -depth 1 -type d); do cd $i && gofresh done
Thanks
Is it possible to check recursive libraries within folder?
Its just too slow to go from directory to directory