Return to Snippet

Revision: 41886
at February 24, 2011 08:58 by yoblob


Initial Code
for dirEval in $( find ./ -type l -name '*' | sort )
do
        category=${dirEval#./}
        echo $category
done

Initial URL


Initial Description


Initial Title
iterate and print all symlinks in dir

Initial Tags
Bash

Initial Language
Bash