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
basic_linux_administration [09 February 2025 / 13:26:07] kadekbasic_linux_administration [29 May 2025 / 11:43:22] (current) kadek
Line 1: Line 1:
-Copy remote file via SSH: +===== Basic Linux Administration ===== 
-   scp <Username>@<Domain-OR-IP>:<File-Name> ./Desktop+ 
 + 
 +  * Copy remote file via SSH: 
 + 
 +  scp <Username>@<Domain-OR-IP>:<File-Name> ./Desktop 
 + 
 +  * Delete files which are so many returned 'Argument list too long' if using rm : 
 + 
 +  find  -maxdepth 1 -mindepth 1 -type f -name "filename.*" -delete
  
-Delete files which are so many returned 'Argument list too long' if using rm : 
-   find  -maxdepth 1 -mindepth 1 -type f -name "filename.*" -delete