mirror of
https://github.com/sahinakkaya/til.git
synced 2025-07-13 06:39:41 +03:00
180 B
180 B
You can move every file (except the hidden ones) up by one level in the hierarchy with something like this:
for d in */ ; do
mv $d* .
rmdir $d # optional
done