Basic Linux Administration
- 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
scp <Username>@<Domain-OR-IP>:<File-Name> ./Desktop
find -maxdepth 1 -mindepth 1 -type f -name "filename.*" -delete