DEV Community

Discussion on: Basic UNIX commands

Collapse
 
andreanidouglas profile image
Douglas R Andreani

The find command is one of the most useful on your toolkit

find . -exec cp {} . \;
(Recusevely find all files in a path and copy to the root)

Collapse
 
legolord208 profile image
jD91mZM2

Although you should really be using fd