4 lines
118 B
Bash
4 lines
118 B
Bash
|
for d in `find ~/freistil -maxdepth 1 -type d`; do
|
||
|
echo -e "$d\034freistil\034freistil project `basename $d`"
|
||
|
done
|