In general, I can scp files from the remote server to my localhost one by one; however, I want to extract 200 files from a large remote folder, and it is not efficient to scp one by one. I wonder if there is a more elegant way to achieve this.
This is what I did normally one by one:
scp remote/Users/folder/file.txt local/Desktop
I have created a .txt file including filenames I wanted to scp.
Any comment would be appreciated!