20:fc0904a91aea default tip
Anton Shestakov <engored@ya.ru>, Sat, 29 Nov 2014 13:29:52 +0800
find-closest: something about ok and fail

previous change 17:facad31ec0dc

find-closest/hgroot_1.sh

Permissions: -rwxr-xr-x

Other formats: Feeds:
#!/bin/bash
root="$(pwd -P)"
while [[ $root && ! -d $root/.hg ]]
do
root="${root%/*}"
done
echo "$root"