I _Really_ Don't Know

A low-frequency blog by Rob Styles

Flatten it, without collisions

find ./from -type f | awk '{ str=$0; sub(/.//, "", str); gsub(///, "-", str); print "mv " $0 " ./to/" str }' | bash