Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
684 views
in Technique[技术] by (71.8m points)

command line - WinSCP select most recent file

Looking for the WinSCP command line equivalent of selecting the most recent/latest file?
http://winscp.net/eng/docs/script_download_most_recent_file

I'm looking for a way to update my WinSCP command-line below to download the latest file:

winscp.com /command "option batch abort" "option confirm off" "open sftp://[email protected]/ -hostkey=""ssh-rsa 2048 xx:xx:xx...""" "exit"
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Use the -latest switch of the get command, as the Downloading the most recent file article shows:

get -latest /home/user/* c:downloaded

If you want to use it on command-line, the syntax is like:

winscp.com /command "open sftp://user:[email protected]/ -hostkey=""ssh-rsa 2048 xx:xx:xx...""" "get -latest /home/user/* c:downloaded" "exit"

Use WinSCP GUI to generate command-line template for you.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...