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