Is there a way of listing the contents of the local directory in ftp?

FtpLs

Ftp Problem Overview


lcd changes local directories.

ls lists files on remote directory.

What I would like is lls, to list files on local directory.

Is this possible?

I know I can always open another terminal to do this, but I'm lazy!

Ftp Solutions


Solution 1 - Ftp

Yes:

!dir

The ! tells the client to run a local shell command. Tested this using both the Windows and Fedora default ftp clients. Note that the actual command may depend upon your OS, for example !ls may be necessary on other versions of Unix/Linux.


For what it's worth, the ! command is listed in the ftp client's help system:

> ftp> help ! > ! escape to the shell

Solution 2 - Ftp

To list files locally use following command

!dir

Or use following command

!ls

> Note: ! means locally not the remote.

lcd is working but !cd will not work and lpwd is not working but !pwd is working.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionJackoView Question on Stackoverflow
Solution 1 - FtpJustin EthierView Answer on Stackoverflow
Solution 2 - FtpChaminda BandaraView Answer on Stackoverflow