LINUX.ORG.RU

История изменений

Исправление tiandrey, (текущая версия) :

find -type d | tr -d -C '/\n' | sort | uniq -c | tail -n 1 | awk '{ print $1 }'

Исходная версия tiandrey, :

find -type d | sed 's@[^/]@@g' | sort | uniq -c | tail -n 1 | awk '{ print $1 }'