<?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"
	>
<channel>
	<title>Comments on: CyberNotes: 7-Zip Command Line Backups</title>
	<atom:link href="http://cybernetnews.com/2008/01/03/cybernotes-7-zip-command-line-backups/feed/" rel="self" type="application/rss+xml" />
	<link>http://cybernetnews.com/2008/01/03/cybernotes-7-zip-command-line-backups/</link>
	<description>Technology News</description>
	<pubDate>Sat, 06 Sep 2008 17:01:40 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
		<item>
		<title>By: Lappy</title>
		<link>http://cybernetnews.com/2008/01/03/cybernotes-7-zip-command-line-backups/#comment-142328</link>
		<dc:creator>Lappy</dc:creator>
		<pubDate>Tue, 19 Aug 2008 22:47:53 +0000</pubDate>
		<guid isPermaLink="false">http://cybernetnews.com/2008/01/03/cybernotes-7-zip-command-line-backups/#comment-142328</guid>
		<description>[div id=commentquote]&lt;a href="#comment-142326"&gt;Ryan wrote:&lt;/a&gt;&lt;blockquote&gt;Thanks for helping Lappy!&lt;/blockquote&gt;[/div]

No problem!  I spent quite a bit of time dealing with the 7-zip command line, for the purposes of making my own batch files in order to automate backups.

Learning and effectively using 7za.exe is terrific!</description>
		<content:encoded><![CDATA[<div id="commentquote"><a href="#comment-142326">Ryan wrote:</a><br />
<blockquote>Thanks for helping Lappy!</p></blockquote>
</div>
<p>No problem!  I spent quite a bit of time dealing with the 7-zip command line, for the purposes of making my own batch files in order to automate backups.</p>
<p>Learning and effectively using 7za.exe is terrific!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan</title>
		<link>http://cybernetnews.com/2008/01/03/cybernotes-7-zip-command-line-backups/#comment-142326</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Tue, 19 Aug 2008 22:15:41 +0000</pubDate>
		<guid isPermaLink="false">http://cybernetnews.com/2008/01/03/cybernotes-7-zip-command-line-backups/#comment-142326</guid>
		<description>Thanks for helping Lappy!</description>
		<content:encoded><![CDATA[<p>Thanks for helping Lappy!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lappy</title>
		<link>http://cybernetnews.com/2008/01/03/cybernotes-7-zip-command-line-backups/#comment-142259</link>
		<dc:creator>Lappy</dc:creator>
		<pubDate>Mon, 18 Aug 2008 19:59:33 +0000</pubDate>
		<guid isPermaLink="false">http://cybernetnews.com/2008/01/03/cybernotes-7-zip-command-line-backups/#comment-142259</guid>
		<description>[div id=commentquote]&lt;a href="#comment-142225"&gt;Sam wrote:&lt;/a&gt;&lt;blockquote&gt;I need help with the following and I appreciate if you can help me out.

Let say you have one file (*.txt) on your desktop which gets updated every month using a different name. In this case I want 7zip to create an archive every month using whatever name the file has. Can this be done?

7za.exe a *.7z “C:\Users\Ryan\Desktop\*.txt”&lt;/blockquote&gt;[/div]

Yes that concept works. You can use an asterisk in place of a filename in order to specify a certain file extension.  However, please be aware there are a couple of catches (see &lt;a href="http://www.7-zip.org/faq.html"&gt; here&lt;/a&gt;):

1) You cannot use the *.* form of a wildcard.  You have to simply use a single *
2) If you chose to use certain specific archive compressions (i.e., .7z), you'll have to use the "-ms=off" switch (disable solid mode) in order to be able to later add files to that archive.

You also may want to use the "u" command in place of the "a" command.  This will guarantee that the newest version of any existing files will be updated.

In short, it should look something like this:
7za.exe u -tzip "c:\location_of_archive\archive.zip" "c:\location_of_files\*.txt"

I strongly recommend you consult the help file (7-zip.chm - seen in the screencap in the article) included in the &lt;a href="http://sourceforge.net/project/showfiles.php?group_id=14481"&gt; downloaded 7za zip file&lt;/a&gt; for all the details about command line usage.</description>
		<content:encoded><![CDATA[<div id="commentquote"><a href="#comment-142225">Sam wrote:</a><br />
<blockquote>I need help with the following and I appreciate if you can help me out.</p>
<p>Let say you have one file (*.txt) on your desktop which gets updated every month using a different name. In this case I want 7zip to create an archive every month using whatever name the file has. Can this be done?</p>
<p>7za.exe a *.7z “C:\Users\Ryan\Desktop\*.txt”</p></blockquote>
</div>
<p>Yes that concept works. You can use an asterisk in place of a filename in order to specify a certain file extension.  However, please be aware there are a couple of catches (see <a href="http://www.7-zip.org/faq.html"> here</a>):</p>
<p>1) You cannot use the *.* form of a wildcard.  You have to simply use a single *<br />
2) If you chose to use certain specific archive compressions (i.e., .7z), you&#8217;ll have to use the &#8220;-ms=off&#8221; switch (disable solid mode) in order to be able to later add files to that archive.</p>
<p>You also may want to use the &#8220;u&#8221; command in place of the &#8220;a&#8221; command.  This will guarantee that the newest version of any existing files will be updated.</p>
<p>In short, it should look something like this:<br />
7za.exe u -tzip &#8220;c:\location_of_archive\archive.zip&#8221; &#8220;c:\location_of_files\*.txt&#8221;</p>
<p>I strongly recommend you consult the help file (7-zip.chm - seen in the screencap in the article) included in the <a href="http://sourceforge.net/project/showfiles.php?group_id=14481"> downloaded 7za zip file</a> for all the details about command line usage.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sam</title>
		<link>http://cybernetnews.com/2008/01/03/cybernotes-7-zip-command-line-backups/#comment-142225</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Mon, 18 Aug 2008 02:57:28 +0000</pubDate>
		<guid isPermaLink="false">http://cybernetnews.com/2008/01/03/cybernotes-7-zip-command-line-backups/#comment-142225</guid>
		<description>I need help with the following and I appreciate if you can help me out.

Let say you have one file (*.txt) on your desktop which gets updated every month using a different name. In this case I want 7zip to create an archive every month using whatever name the file has. Can this be done?

7za.exe a *.7z "C:\Users\Ryan\Desktop\*.txt"</description>
		<content:encoded><![CDATA[<p>I need help with the following and I appreciate if you can help me out.</p>
<p>Let say you have one file (*.txt) on your desktop which gets updated every month using a different name. In this case I want 7zip to create an archive every month using whatever name the file has. Can this be done?</p>
<p>7za.exe a *.7z &#8220;C:\Users\Ryan\Desktop\*.txt&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott Wegner</title>
		<link>http://cybernetnews.com/2008/01/03/cybernotes-7-zip-command-line-backups/#comment-137968</link>
		<dc:creator>Scott Wegner</dc:creator>
		<pubDate>Fri, 16 May 2008 19:14:32 +0000</pubDate>
		<guid isPermaLink="false">http://cybernetnews.com/2008/01/03/cybernotes-7-zip-command-line-backups/#comment-137968</guid>
		<description>There is a very thorough description of the command-line syntax here:
http://prudentialscatterbrain.hp.infoseek.co.jp/7z-4.20_MANUAL/syntax.htm

Very useful if you want to use other compression methods.</description>
		<content:encoded><![CDATA[<p>There is a very thorough description of the command-line syntax here:<br />
<a href="http://prudentialscatterbrain.hp.infoseek.co.jp/7z-4.20_MANUAL/syntax.htm" rel="nofollow">http://prudentialscatterbrain......syntax.htm</a></p>
<p>Very useful if you want to use other compression methods.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan</title>
		<link>http://cybernetnews.com/2008/01/03/cybernotes-7-zip-command-line-backups/#comment-133828</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Thu, 27 Mar 2008 17:39:31 +0000</pubDate>
		<guid isPermaLink="false">http://cybernetnews.com/2008/01/03/cybernotes-7-zip-command-line-backups/#comment-133828</guid>
		<description>I'll definitely have to check that app out because it looks pretty sweet.</description>
		<content:encoded><![CDATA[<p>I&#8217;ll definitely have to check that app out because it looks pretty sweet.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: leland</title>
		<link>http://cybernetnews.com/2008/01/03/cybernotes-7-zip-command-line-backups/#comment-133792</link>
		<dc:creator>leland</dc:creator>
		<pubDate>Thu, 27 Mar 2008 04:45:29 +0000</pubDate>
		<guid isPermaLink="false">http://cybernetnews.com/2008/01/03/cybernotes-7-zip-command-line-backups/#comment-133792</guid>
		<description>You should take a look at Cobian Backup http://www.educ.umu.se/~cobian/cobianbackup.htm version 9 Beta named Amanita.  It now includes 7-zip compression and a great GUI for automating all your backup tasks.  I have been using Cobian for years and it really is one of the best free programs I know of.</description>
		<content:encoded><![CDATA[<p>You should take a look at Cobian Backup <a href="http://www.educ.umu.se/~cobian/cobianbackup.htm" rel="nofollow">http://www.educ.umu.se/~cobian.....backup.htm</a> version 9 Beta named Amanita.  It now includes 7-zip compression and a great GUI for automating all your backup tasks.  I have been using Cobian for years and it really is one of the best free programs I know of.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan</title>
		<link>http://cybernetnews.com/2008/01/03/cybernotes-7-zip-command-line-backups/#comment-128946</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Mon, 07 Jan 2008 16:26:16 +0000</pubDate>
		<guid isPermaLink="false">http://cybernetnews.com/2008/01/03/cybernotes-7-zip-command-line-backups/#comment-128946</guid>
		<description>[div id=commentquote]&lt;a href="#comment-128776" rel="nofollow"&gt;K-IntheHouse wrote:&lt;/a&gt;&lt;blockquote&gt;Very useful, Ryan! Stumbled and del.icio.us’ed! I have been looking to automate my document backups in my laptop. Combine this with FileHamster, I can automatically move the backed up zip files to my pen drive anytime I plug that in!  :P&lt;/blockquote&gt;[/div]
Hadn't heard of FileHamster before, but it looks like a real gem. We'll have to write about that. :)</description>
		<content:encoded><![CDATA[<div id="commentquote"><a href="#comment-128776" rel="nofollow">K-IntheHouse wrote:</a><br />
<blockquote>Very useful, Ryan! Stumbled and del.icio.us’ed! I have been looking to automate my document backups in my laptop. Combine this with FileHamster, I can automatically move the backed up zip files to my pen drive anytime I plug that in!  <img src='http://cybernetnews.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p></blockquote>
</div>
<p>Hadn&#8217;t heard of FileHamster before, but it looks like a real gem. We&#8217;ll have to write about that. <img src='http://cybernetnews.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lappy</title>
		<link>http://cybernetnews.com/2008/01/03/cybernotes-7-zip-command-line-backups/#comment-128895</link>
		<dc:creator>Lappy</dc:creator>
		<pubDate>Mon, 07 Jan 2008 03:00:24 +0000</pubDate>
		<guid isPermaLink="false">http://cybernetnews.com/2008/01/03/cybernotes-7-zip-command-line-backups/#comment-128895</guid>
		<description>[div id=commentquote]&lt;a href="#comment-128776" rel="nofollow"&gt;K-IntheHouse wrote:&lt;/a&gt;&lt;blockquote&gt;Very useful, Ryan! Stumbled and del.icio.us’ed! I have been looking to automate my document backups in my laptop. Combine this with FileHamster, I can automatically move the backed up zip files to my pen drive anytime I plug that in!  :P&lt;/blockquote&gt;[/div]

TERRIFIC IDEA (Ryan and K-IntheHouse)!!</description>
		<content:encoded><![CDATA[<div id="commentquote"><a href="#comment-128776" rel="nofollow">K-IntheHouse wrote:</a><br />
<blockquote>Very useful, Ryan! Stumbled and del.icio.us’ed! I have been looking to automate my document backups in my laptop. Combine this with FileHamster, I can automatically move the backed up zip files to my pen drive anytime I plug that in!  <img src='http://cybernetnews.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p></blockquote>
</div>
<p>TERRIFIC IDEA (Ryan and K-IntheHouse)!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: K-IntheHouse</title>
		<link>http://cybernetnews.com/2008/01/03/cybernotes-7-zip-command-line-backups/#comment-128776</link>
		<dc:creator>K-IntheHouse</dc:creator>
		<pubDate>Sat, 05 Jan 2008 13:49:21 +0000</pubDate>
		<guid isPermaLink="false">http://cybernetnews.com/2008/01/03/cybernotes-7-zip-command-line-backups/#comment-128776</guid>
		<description>Very useful, Ryan! Stumbled and del.icio.us'ed! I have been looking to automate my document backups in my laptop. Combine this with FileHamster, I can automatically move the backed up zip files to my pen drive anytime I plug that in!  :P</description>
		<content:encoded><![CDATA[<p>Very useful, Ryan! Stumbled and del.icio.us&#8217;ed! I have been looking to automate my document backups in my laptop. Combine this with FileHamster, I can automatically move the backed up zip files to my pen drive anytime I plug that in!  <img src='http://cybernetnews.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Skylog &#187; Blog Archive &#187; links for 2008-01-04</title>
		<link>http://cybernetnews.com/2008/01/03/cybernotes-7-zip-command-line-backups/#comment-128658</link>
		<dc:creator>Skylog &#187; Blog Archive &#187; links for 2008-01-04</dc:creator>
		<pubDate>Fri, 04 Jan 2008 06:18:49 +0000</pubDate>
		<guid isPermaLink="false">http://cybernetnews.com/2008/01/03/cybernotes-7-zip-command-line-backups/#comment-128658</guid>
		<description>[...] 7-Zip Command Line Backups (tags: software) [...]</description>
		<content:encoded><![CDATA[<p>[...] 7-Zip Command Line Backups (tags: software) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan</title>
		<link>http://cybernetnews.com/2008/01/03/cybernotes-7-zip-command-line-backups/#comment-128638</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Fri, 04 Jan 2008 04:14:19 +0000</pubDate>
		<guid isPermaLink="false">http://cybernetnews.com/2008/01/03/cybernotes-7-zip-command-line-backups/#comment-128638</guid>
		<description>I keep that 7-Zip portable on my Flash drive all the time. It's a great tool to have.</description>
		<content:encoded><![CDATA[<p>I keep that 7-Zip portable on my Flash drive all the time. It&#8217;s a great tool to have.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lappy</title>
		<link>http://cybernetnews.com/2008/01/03/cybernotes-7-zip-command-line-backups/#comment-128554</link>
		<dc:creator>Lappy</dc:creator>
		<pubDate>Thu, 03 Jan 2008 15:53:47 +0000</pubDate>
		<guid isPermaLink="false">http://cybernetnews.com/2008/01/03/cybernotes-7-zip-command-line-backups/#comment-128554</guid>
		<description>I definitely agree - 7zip is a wonderful tool, flexible and very powerful.  Thanks for the great tip, by the way!  I'm recently rediscovering the utility of the command line.

Additionally, if you're interested in a portable version that may be a little more inline with everyday use (e.g., non-command line), try 7-zip Portable, brought to you by the people over at PortableApps.com:  http://portableapps.com/apps/utilities/7-zip_portable</description>
		<content:encoded><![CDATA[<p>I definitely agree - 7zip is a wonderful tool, flexible and very powerful.  Thanks for the great tip, by the way!  I&#8217;m recently rediscovering the utility of the command line.</p>
<p>Additionally, if you&#8217;re interested in a portable version that may be a little more inline with everyday use (e.g., non-command line), try 7-zip Portable, brought to you by the people over at PortableApps.com:  <a href="http://portableapps.com/apps/utilities/7-zip_portable" rel="nofollow">http://portableapps.com/apps/u.....p_portable</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
