![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Rules & FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Scripting comments | gliesian | Shell Programming and Scripting | 4 | 03-28-2008 05:32 AM |
| OMG BPMN 2: comments for CEP | iBot | Complex Event Processing RSS News | 0 | 03-11-2008 09:20 AM |
| Comments unexpectedly print | John H | Shell Programming and Scripting | 5 | 04-11-2007 04:56 PM |
| Remove comments... | LivinFree | UNIX for Dummies Questions & Answers | 1 | 10-11-2001 06:43 AM |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
Dear Unix Gurus,
Not sure if this is possible/workable but I'm trying add a comment line before each operation such as the following: ftp -n <mail server> ${log_dir}/test_put.log << END user <user_id> <password> verbose bin # List Files Before putting Data echo File Check Before FTP >> ${log_dir}/test_put.log pwd echo File In Directory >> ${log_dir}/test_put.log dir But I dont think this is working Many Thanks. lweegp Last edited by lweegp; 10-10-2005 at 06:16 PM. Reason: To add more informations. |
| Forum Sponsor | ||
|
|
|
|||
|
hi akrathi,
this is my script, it dont seems to work. something wrong somewhere? ftp -n <mail server> > <log_dir>/test_put.log << END user <userid> <passwd> verbose bin !echo "Before putting the A0 Data" dir mput A0* bye END |