User Tools

Site Tools


copy_move_delete

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
copy_move_delete [2016/08/21 11:33] walkeradmincopy_move_delete [2023/03/09 22:35] (current) – external edit 127.0.0.1
Line 1: Line 1:
 ===== Copy Move Delete ===== ===== Copy Move Delete =====
-\\  +<color darkorange>2016</color>
-\\  +
-To copy a file use <color darkred>cp</color>+
  
 +----
 +
 +\\ 
 +To <color darkred>Copy/Delete</color> a file use <color darkred>cp</color>
     To copy a file use:     To copy a file use:
     cp filename path/filename     cp filename path/filename
Line 11: Line 13:
 \\  \\ 
 Copying Directories (and contained files) Copying Directories (and contained files)
- 
     To copy a directory     To copy a directory
     cp -avr source_directory destination_directory     cp -avr source_directory destination_directory
Line 21: Line 22:
 \\  \\ 
 The attributes <color darkred>-avr</color> represent The attributes <color darkred>-avr</color> represent
-\\  
     a   Preserve the specified attributes such as directory and file mode, ownership, timestamps, etc.     a   Preserve the specified attributes such as directory and file mode, ownership, timestamps, etc.
     v   Show results     v   Show results
Line 27: Line 27:
 \\  \\ 
 \\  \\ 
 +To <color darkred>Move</color> use <color darkred>mv</color> 
 +    To Move a file 
 +    mv source destination 
 +     
 +    To move a file called test.txt from /home/pi to /home/pi/tmp 
 +    mv /home/pi/test.txt /home/pi/tmp 
 +     
 +    mv works with directorys too 
 +    To move the folder /home/pi/Trial to the folder /mnt use 
 +    mv /home/pi/Trial /mnt (you may need to sudo depending on destination directory rights) 
 +\\  
 +\\  
 +To <color darkred>Delete</color> use <color darkred>rm</color> 
 +    To Delete a file 
 +    rm filename 
 +     
 +    To delete a directory (even if it is empty) 
 +    rm -R directory 
 +\\  
 +\\ 
copy_move_delete.1471775582.txt.gz · Last modified: 2023/03/09 22:35 (external edit)