![]() |
|
|
|
|
|||||||
| 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 |
| Passwordless sftp from UNIX to windows site | konark | Shell Programming and Scripting | 2 | 03-24-2008 10:36 AM |
| how to get multiple files using sftp from a windows server | ramky79 | SUN Solaris | 0 | 03-02-2008 10:15 AM |
| SFTP from windows E:/ to unix server | pranavagarwal | Shell Programming and Scripting | 12 | 11-28-2007 06:58 AM |
| Mount a windows drive on unix | ejbrever | UNIX for Dummies Questions & Answers | 4 | 10-11-2006 02:35 AM |
| SFTP from UNIX (AIX) to Windows 2000 server | reddymails | Shell Programming and Scripting | 0 | 03-09-2006 05:15 AM |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
Hello friends,
I was doing this test script which would take a file from my own E: drive to the unix server which i access from a putty. I tried Code:
sftp <osuser>@<ipaddress> does the windows client have to be a server installation? i was trying on win xp from solaris 5.10 tty Another thing, I need to understand the syntax of a crontab command. e.g., Code:
10 2-10 * * * ksh /home/check2run.ksh /home/test.done "home/test_sftp.ksh sftp" 2>> logs/sftptest.log >& 2 plz tell me, what do the Code:
/home/test.done Code:
"home/test_sftp.ksh sftp" 2>> logs/sftptest.log Code:
>& 2 will be sincerely grateful for any kind of help that I recieve. |
| Forum Sponsor | ||
|
|
|
|||
|
cron line explanation
You should better try WinSCP, it's a lot easier to use.
Code:
10 2-10 * * * ksh /home/check2run.ksh /home/test.done "home/test_sftp.ksh sftp" 2>> logs/sftptest.log >& 2 execute at minute 10 between 2 and 10am everyday the following command: Code:
ksh /home/check2run.ksh /home/test.done "home/test_sftp.ksh sftp" 2>> logs/sftptest.log >& 2 Code:
/home/test.done "home/test_sftp.ksh sftp" Code:
2>> logs/sftptest.log Code:
>& 2 |