<?xml version="1.0" encoding="UTF-8"?><rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
> <channel><title>Comments on: RHEL / CentOS Linux FTP Cron Job for automatic ftp backup</title> <atom:link href="http://www.cyberciti.biz/faq/linux-unix-autologin-cron-ftp-script/feed/" rel="self" type="application/rss+xml" /><link>http://www.cyberciti.biz/faq/linux-unix-autologin-cron-ftp-script/</link> <description>Every answer asks a more beautiful question.</description> <lastBuildDate>Fri, 10 Feb 2012 19:55:56 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>By: Jay</title><link>http://www.cyberciti.biz/faq/linux-unix-autologin-cron-ftp-script/#comment-63747</link> <dc:creator>Jay</dc:creator> <pubDate>Thu, 20 Oct 2011 21:48:37 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/linux-unix-autologin-cron-ftp-script/#comment-63747</guid> <description>How can I get this to show the output from ftp so I can verify the file transferred correctly?</description> <content:encoded><![CDATA[<p>How can I get this to show the output from ftp so I can verify the file transferred correctly?</p> ]]></content:encoded> </item> <item><title>By: Daniel</title><link>http://www.cyberciti.biz/faq/linux-unix-autologin-cron-ftp-script/#comment-47797</link> <dc:creator>Daniel</dc:creator> <pubDate>Sun, 13 Jun 2010 21:49:21 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/linux-unix-autologin-cron-ftp-script/#comment-47797</guid> <description>just a note that your cron cmd is wrong: crontab lines are minute, hour.</description> <content:encoded><![CDATA[<p>just a note that your cron cmd is wrong: crontab lines are minute, hour.</p> ]]></content:encoded> </item> <item><title>By: Bishop</title><link>http://www.cyberciti.biz/faq/linux-unix-autologin-cron-ftp-script/#comment-45224</link> <dc:creator>Bishop</dc:creator> <pubDate>Fri, 18 Dec 2009 15:46:04 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/linux-unix-autologin-cron-ftp-script/#comment-45224</guid> <description>Ekram, try changing directory either befor you enter FTP or once in.  That way, it will default to looking for your file in that directory.  Don&#039;t forget the / at the beginning of your path (/path/of/filename or //path/of/filename).   Note: I am going over a secure network.
#/bin/ksh
# ----- auto ftp DRAFT!!!
cd /path/of/filename
HOST=&#039;Server_IP&#039;
USER=&#039;User_ID&#039;
PASSWD=&#039;password&#039;
ftp -n $HOST &lt;&lt;END_SCRIPT
quote USER $USER
quote PASS $PASSWD
binary
put filename.txt /path/of/out_file/test_ftp.txt
quit
END_SCRIPT</description> <content:encoded><![CDATA[<p>Ekram, try changing directory either befor you enter FTP or once in.  That way, it will default to looking for your file in that directory.  Don&#8217;t forget the / at the beginning of your path (/path/of/filename or //path/of/filename).   Note: I am going over a secure network.</p><p>#/bin/ksh<br
/> # &#8212;&#8211; auto ftp DRAFT!!!<br
/> cd /path/of/filename</p><p>HOST=&#8217;Server_IP&#8217;<br
/> USER=&#8217;User_ID&#8217;<br
/> PASSWD=&#8217;password&#8217;</p><p>ftp -n $HOST &lt;&lt;END_SCRIPT<br
/> quote USER $USER<br
/> quote PASS $PASSWD<br
/> binary<br
/> put filename.txt /path/of/out_file/test_ftp.txt<br
/> quit<br
/> END_SCRIPT</p> ]]></content:encoded> </item> <item><title>By: Ekram</title><link>http://www.cyberciti.biz/faq/linux-unix-autologin-cron-ftp-script/#comment-44182</link> <dc:creator>Ekram</dc:creator> <pubDate>Thu, 22 Oct 2009 03:32:57 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/linux-unix-autologin-cron-ftp-script/#comment-44182</guid> <description>one more thing i solve the permission problem but i think mput full path name not supported?
please help me</description> <content:encoded><![CDATA[<p>one more thing i solve the permission problem but i think mput full path name not supported?<br
/> please help me</p> ]]></content:encoded> </item> <item><title>By: Ekram</title><link>http://www.cyberciti.biz/faq/linux-unix-autologin-cron-ftp-script/#comment-44173</link> <dc:creator>Ekram</dc:creator> <pubDate>Wed, 21 Oct 2009 13:44:04 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/linux-unix-autologin-cron-ftp-script/#comment-44173</guid> <description>Hi the problem is mput line.
if i give the full path its give 550 error which is seems permission related.
I just then give the file name for example mput filename works for me.
what is the problem with
mput path/of/filename</description> <content:encoded><![CDATA[<p>Hi the problem is mput line.<br
/> if i give the full path its give 550 error which is seems permission related.<br
/> I just then give the file name for example mput filename works for me.</p><p>what is the problem with<br
/> mput path/of/filename</p> ]]></content:encoded> </item> <item><title>By: Ethan Russell</title><link>http://www.cyberciti.biz/faq/linux-unix-autologin-cron-ftp-script/#comment-44153</link> <dc:creator>Ethan Russell</dc:creator> <pubDate>Mon, 19 Oct 2009 19:07:43 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/linux-unix-autologin-cron-ftp-script/#comment-44153</guid> <description>Thanks very much for the script, worked like a champ with minimal modifications needed.</description> <content:encoded><![CDATA[<p>Thanks very much for the script, worked like a champ with minimal modifications needed.</p> ]]></content:encoded> </item> <item><title>By: Jozef Sevcik</title><link>http://www.cyberciti.biz/faq/linux-unix-autologin-cron-ftp-script/#comment-40000</link> <dc:creator>Jozef Sevcik</dc:creator> <pubDate>Sun, 25 Jan 2009 19:18:37 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/linux-unix-autologin-cron-ftp-script/#comment-40000</guid> <description>One note, it&#039;s useful to run ftp with &#039;-i&#039; option also, so I use &#039;ftp -ni&#039;.
It will disable confirmation at mput for all files and also enable you to transfer more all files you filter (*.tar.gz in article.)
My $0.02</description> <content:encoded><![CDATA[<p>One note, it&#8217;s useful to run ftp with &#8216;-i&#8217; option also, so I use &#8216;ftp -ni&#8217;.<br
/> It will disable confirmation at mput for all files and also enable you to transfer more all files you filter (*.tar.gz in article.)<br
/> My $0.02</p> ]]></content:encoded> </item> <item><title>By: Jozef Sevcik</title><link>http://www.cyberciti.biz/faq/linux-unix-autologin-cron-ftp-script/#comment-39983</link> <dc:creator>Jozef Sevcik</dc:creator> <pubDate>Sat, 24 Jan 2009 14:59:17 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/linux-unix-autologin-cron-ftp-script/#comment-39983</guid> <description>Thank you, it&#039;s very helpful.</description> <content:encoded><![CDATA[<p>Thank you, it&#8217;s very helpful.</p> ]]></content:encoded> </item> <item><title>By: Web Guy</title><link>http://www.cyberciti.biz/faq/linux-unix-autologin-cron-ftp-script/#comment-39901</link> <dc:creator>Web Guy</dc:creator> <pubDate>Sat, 17 Jan 2009 07:36:25 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/linux-unix-autologin-cron-ftp-script/#comment-39901</guid> <description>Hey,
It is very helpful. Though have not tried it yet, I believe it will work like charm.</description> <content:encoded><![CDATA[<p>Hey,</p><p>It is very helpful. Though have not tried it yet, I believe it will work like charm.</p> ]]></content:encoded> </item> <item><title>By: Mrtz</title><link>http://www.cyberciti.biz/faq/linux-unix-autologin-cron-ftp-script/#comment-39828</link> <dc:creator>Mrtz</dc:creator> <pubDate>Wed, 14 Jan 2009 05:53:32 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/linux-unix-autologin-cron-ftp-script/#comment-39828</guid> <description>very useful, thanks.</description> <content:encoded><![CDATA[<p>very useful, thanks.</p> ]]></content:encoded> </item> <item><title>By: mcguillan</title><link>http://www.cyberciti.biz/faq/linux-unix-autologin-cron-ftp-script/#comment-39306</link> <dc:creator>mcguillan</dc:creator> <pubDate>Tue, 25 Nov 2008 12:33:12 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/linux-unix-autologin-cron-ftp-script/#comment-39306</guid> <description>It would be better to encrypt at least the user and pass with md5...</description> <content:encoded><![CDATA[<p>It would be better to encrypt at least the user and pass with md5&#8230;</p> ]]></content:encoded> </item> <item><title>By: Internet Marketing Legacy</title><link>http://www.cyberciti.biz/faq/linux-unix-autologin-cron-ftp-script/#comment-37564</link> <dc:creator>Internet Marketing Legacy</dc:creator> <pubDate>Tue, 04 Mar 2008 18:31:28 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/linux-unix-autologin-cron-ftp-script/#comment-37564</guid> <description>Hey, this is very helpful. Thank for the script.</description> <content:encoded><![CDATA[<p>Hey, this is very helpful. Thank for the script.</p> ]]></content:encoded> </item> <item><title>By: Wilfred</title><link>http://www.cyberciti.biz/faq/linux-unix-autologin-cron-ftp-script/#comment-37513</link> <dc:creator>Wilfred</dc:creator> <pubDate>Sun, 24 Feb 2008 16:43:36 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/linux-unix-autologin-cron-ftp-script/#comment-37513</guid> <description>Where does it say it&#039;s secure?
It does the job, period.
FTP itself isn&#039;t secure</description> <content:encoded><![CDATA[<p>Where does it say it&#8217;s secure?<br
/> It does the job, period.<br
/> FTP itself isn&#8217;t secure</p> ]]></content:encoded> </item> <item><title>By: Planet Malaysia</title><link>http://www.cyberciti.biz/faq/linux-unix-autologin-cron-ftp-script/#comment-37128</link> <dc:creator>Planet Malaysia</dc:creator> <pubDate>Thu, 06 Dec 2007 07:23:10 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/linux-unix-autologin-cron-ftp-script/#comment-37128</guid> <description>I think this is not secure.</description> <content:encoded><![CDATA[<p>I think this is not secure.</p> ]]></content:encoded> </item> </channel> </rss>
