Linux basis commando’s 07 CP

COPY

Met CP kan je bestanden of met -r directory’s kopiëren.
Als het goed is heb je al gelezen dat je met LS de inhoud van een directory kan zien.

Zo kopieer je het bestand testfile.pl naar de map testmap:

 root@CentOS ~ $ ls -l
 total 12
 drwxrwxr-x 2 root root 4096 Jan 1 1970 python_games
 -rw-r--r-- 1 root root 5 Mar 14 06:31 testfile.pl
 drwxr-xr-x 2 root root 4096 Mar 14 06:23 testmap
 root@CentOS ~ $ cp testfile.pl /testmap/

Je schrijft dus CP, spatie [het bestand welke je wilt kopiëren] spatie [de plaats en naam waar je hem naartoe wilt kopiëren].

Als je CP -r gebruikt kan je ook hele directory’s kopieerden.

 root@CentOS ~ $ ls -l
 total 12
 drwxrwxr-x 2 root root 4096 Jan 1 1970 python_games
 drwxr-xr-x 2 root root 4096 Mar 14 06:23 testmap
 root@CentOS ~ $ cp -r testmap testmap2
 root@CentOS ~ $ ls -l
 total 12
 drwxrwxr-x 2 root root 4096 Jan 1 1970 python_games
 drwxr-xr-x 2 root root 4096 Mar 14 06:38 testmap
 drwxr-xr-x 2 root root 4096 Mar 14 06:53 testmap2
 root@CentOS ~ $ _

Geef een reactie