Hmm, you're not getting any help....
Make a script that runs the commands that you want, and execute the scripts by cron.
script like (sort of):
cd /specific/folder
# Now ftp
HOST='ftp.users.qwest.net'
USER='yourid'
PASSWD='yourpw'
FILE='file.txt'
ftp $HOST <user $USER
$PASSWD
put $FILE
quit
# now run perl
/home/e-smith/files/users/yourname/home/perl_script
# copy
cp *.txt /home/e-smith/files/users/notyourname/home/folder
=========== end script ============
Make sure your script is executable (chmod 755 script_name), and test it first
Then execute the script via cron (see man cron for details)