<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Instropy &#187; Bash</title>
	<atom:link href="http://www.instropy.com/category/bsh/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.instropy.com</link>
	<description>El blog de Oscar Nevarez Leal.</description>
	<lastBuildDate>Mon, 28 Mar 2011 20:32:14 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Notificando los cambios del repositorio via email</title>
		<link>http://www.instropy.com/2009/04/07/notificando-los-cambios-del-repositorio-via-email/</link>
		<comments>http://www.instropy.com/2009/04/07/notificando-los-cambios-del-repositorio-via-email/#comments</comments>
		<pubDate>Wed, 08 Apr 2009 03:00:15 +0000</pubDate>
		<dc:creator>Insane</dc:creator>
				<category><![CDATA[Bash]]></category>
		<category><![CDATA[Metodologias de trabajo]]></category>

		<guid isPermaLink="false">http://instropy.com/2009/04/07/notificando-los-cambios-del-repositorio-via-email/</guid>
		<description><![CDATA[Cuantas veces nuecesitamos saber en el momento justo que cambios se han subido al repositorio, esto por algun otro medio distinto al mensajito &#8220;subi cambios&#8221; de nuestro partner, bueno con svn es bastante facil recibir este tipo de notificaciones, emepezemos:
1.localiza la ruta del repositorio , de no conocerla puedes hacer algo parecido a:

ps -fea &#124; [...]]]></description>
		<wfw:commentRss>http://www.instropy.com/2009/04/07/notificando-los-cambios-del-repositorio-via-email/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pgp Batch</title>
		<link>http://www.instropy.com/2008/12/12/pgp-batch/</link>
		<comments>http://www.instropy.com/2008/12/12/pgp-batch/#comments</comments>
		<pubDate>Sat, 13 Dec 2008 01:13:06 +0000</pubDate>
		<dc:creator>Insane</dc:creator>
				<category><![CDATA[Bash]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[decrypt]]></category>
		<category><![CDATA[desencriptar]]></category>
		<category><![CDATA[pgp batch]]></category>
		<category><![CDATA[pgp proceso lotes]]></category>

		<guid isPermaLink="false">http://instropy.com/?p=85</guid>
		<description><![CDATA[I`ve made the following script , it decrypts all pgp/encrypted files and then move them into another folder.
I hope it helps someone.


#!/bin/bash
decryptEmAll(){
#file that contains your passphrase.
declare -r pfile='/pf0.dat';
#where to move the decrypted files.
declare -r outputFolder='/blackhole/';
for i in `ls /yourpath/*.pgp`;
do
echo "----------------------------------------------------\n";
#build the command.

cmd="cat $pfile"
cmd="${cmd}&#124;"
cmd="$cmd /usr/bin/gpg --batch --no-tty --yes --passphrase-fd=0 "
cmd="$cmd --output $outputFolder${i/\.pgp/} "
cmd="$cmd --decrypt /yourpath/${i}"
eval $cmd

echo [...]]]></description>
		<wfw:commentRss>http://www.instropy.com/2008/12/12/pgp-batch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

