“Low quality code is not cheaper; it is vastly more expensive, even in the short term. Bad code slows everyone down from the minute that it is written. It creates a continuous and copious drag on further progress. It requires armies of coders to overcome that drag; and those armies must grow exponentially to maintain constant velocity against that drag.”
Robert C. Martin
Wednesday, March 11, 2009
Linux copy directory
You can use;
cp -Rf source_dir/ dest_dir/
to copy one directory to another. And -R parameter means Recuresively; f means forcefully.
No comments:
Post a Comment