Answers for "copy directory without contents"

0

copy directory without contents

find . -type d > dirs.txt
xargs mkdir -p destination < dirs.txt
Posted by: Guest on September-17-2021

Code answers related to "copy directory without contents"

Browse Popular Code Answers by Language