bash: copying files without prompt
Sep.09, 2009 in
Think Linux
It can be annoying that the ‘cp’ command keep prompting if you are to overwrite some files. This is due the cp alias. To fix that,
unalias cp cp -af source target
done.
It can be annoying that the ‘cp’ command keep prompting if you are to overwrite some files. This is due the cp alias. To fix that,
unalias cp cp -af source target
done.
Leave a Reply