Meine Shell:bin/ksh
Mein System:
Linux 2.6.18-406.el5 #1 SMP Fri May 1 10:37:57 EDT 2015 x86_64 x86_64 x86_64 GNU/Linux
Mein Skript:
ftp -divn XXX.XXX.XX0 << EOF!
user user pass
cd /home/dir1/dir2/dir3/
lcd /home/dir34/dir45
get filename
bye
EOF!
Mein Problem: Ich möchte diesen Prozess automatisieren. Ich möchte nicht alle Codezeilen selbst schreiben, sondern nur das endgültige Verzeichnis „input“, das Verzeichnis „output“ und den Dateinamen.
Beispiel: Ich möchte FILE1.txt von cd /home/dir1/dir2/dir3/dirdata nach /home/dir34/dir45/dirfinal senden. Ich möchte das Skript ausführen und nur in die Konsole schreiben:
dirdata
dirfinal
FILE1.txt
Antwort1
magic_script dirdata dirfinal file1.txt
$0 is the script_name (magic_script)
$1 first argument dirdata
$2 second argument dirfinal
$3 third argument file1.txt
ftp -divn XXX.XXX.XX0 << EOF!
user user pass
cd /home/dir1/dir2/dir3/"$1"
lcd/home/dir11/dir22/dir33/"$2"
get "$3"
bye
EOF!