mirror of
https://github.com/sahinakkaya/til.git
synced 2024-11-12 20:19:38 +01:00
176 B
176 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