While you copy some directory or files it will prompt " cp: overwrite " as shown below.
# cp -rf /some/file/or/directory/* /another/locationIf there is lot of files, it will hard to do. So to avoid this, just put "\" before the command cp
cp: overwrite `./some/files/yyy'?
# \cp -rf /some/file/or/directory/* /another/locationThis will eliminate the interactive mode.
No comments:
Post a Comment