Soy muy nuevo en codificación / scripting ..
Tengo una pregunta de noob, supongo:
Tengo este script para cargar y eliminar archivos en mi host remoto:
#!/bin/bash
echo Starting Website upload ...
echo This may take some time depending on your internet connection ...
echo Waiting for remote connnection ...
/usr/bin/ftp -d server121.web-hosting.com << ftpEOF
prompt
cd public_html
delete index.html
cd images
mdelete *.jpg
cd ..
lcd /Applications/PlexEmail/streamnet/
put index.html
lcd images
cd images
mput *.jpg
bye
ftpEOF
echo Website upload successfull ...
Ok, ahora actualicé mi mac a high sierra 10.13 y ya no hay ningún comando ftp.
¿Puede alguien ayudarme para que esto funcione con lftp
?