How do I print the contents of my local directory in PSFtp?

5

I can type dir to print the contents of the remote working directory.

I can type lpwd to print the name of the local directory.

What command do I use to print the contents of the local directory?

soapergem

Posted 2015-01-02T22:10:11.563

Reputation: 1 056

Answers

9

As per this guide you can use !dir (for example) to run a local command by prefixing with !.

In bash you can use lls to display a "local ls", so I don't know if ldir would work in your case, but you can try and see.

Kristian

Posted 2015-01-02T22:10:11.563

Reputation: 2 982

2Thanks! I tested out both lls and ldir and neither one works. But the ! did the trick. – soapergem – 2015-01-02T22:44:20.130