cp sovrascrive file / directory in Linux / Unix.
Normalmente il cp sovrascrive i file e le directory di destinazione:
$ cp test.c bak
Per aggiungere un prompt interattivo prima di sovrascrivere utilizzare l'opzione -i e premere "y" per sovrascrivere:
$ cp -i test.c bak
cp: overwrite 'bak/test.c'? y
Per evitare di sovrascrivere usa l'opzione -n:
$ cp -n test.c bak
Per sovrascrivere sempre senza prompt:
$ \cp test.c bak
Advertising