Forum Discussion
Altera_Forum
Honored Contributor
21 years agouClinux FTP Question?
Hello I have a program that creates files, puts them into my //home/ftp directory. I would like to log into the FTP server and download those files that the program creates. I cant dowload or see any...
Altera_Forum
Honored Contributor
21 years agoYou were on the right track it had to do with the ls, but putting ls in the ftp directory did nothing here is what I did.
I found that the default instalation worked. The default installation used the "ls" command from the busybox. I created a little script: # !/bin/sh /bin/busybox ls $* that links the ls command back to the busybox, and I removed the ls.exe fromt the /bin directory. This gave me the colored text back, and allowed my ftp client to "see" the files! (same as the default instalation) Works prefectly now. Thanks for the help!