<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Cosasdelinux's Weblog</title>
	<atom:link href="http://cosasdelinux.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://cosasdelinux.wordpress.com</link>
	<description>Weblog con tips para linux</description>
	<lastBuildDate>Fri, 01 Jul 2011 18:24:54 +0000</lastBuildDate>
	<language>es</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='cosasdelinux.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Cosasdelinux's Weblog</title>
		<link>http://cosasdelinux.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://cosasdelinux.wordpress.com/osd.xml" title="Cosasdelinux&#039;s Weblog" />
	<atom:link rel='hub' href='http://cosasdelinux.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Create dhcpd conf from csv file with mac and hostname</title>
		<link>http://cosasdelinux.wordpress.com/2011/07/01/create-dhcpd-conf-from-csv-file-with-mac-and-hostname/</link>
		<comments>http://cosasdelinux.wordpress.com/2011/07/01/create-dhcpd-conf-from-csv-file-with-mac-and-hostname/#comments</comments>
		<pubDate>Fri, 01 Jul 2011 18:21:08 +0000</pubDate>
		<dc:creator>cosasdelinux</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[bash script]]></category>
		<category><![CDATA[comandos linux]]></category>
		<category><![CDATA[dhcp]]></category>
		<category><![CDATA[dhcpd]]></category>
		<category><![CDATA[linux scripting]]></category>
		<category><![CDATA[linux tips]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[perl dhcpd script]]></category>
		<category><![CDATA[perl one line]]></category>
		<category><![CDATA[shell command]]></category>

		<guid isPermaLink="false">http://cosasdelinux.wordpress.com/?p=63</guid>
		<description><![CDATA[We have a file calle ips and the file contens 00:1c:c4:64:a0:c0;hostname1; 1c:c1:de:0f:f2:c2;hostname2; create a createdhcpd.pl with this #!/usr/bin/perl open (FILE, &#8216;ips&#8217;); open (MYFILE, &#8216;&#62;data.txt&#8217;); while () { chomp; ($mac, $host) = split(&#8220;;&#8221;); print MYFILE &#8220;host $host { \n hardware ethernet $mac\; \n fixed-address $host\; \n \} \n \n&#8221;; print &#8220;\n&#8221;; } close (FILE); close (MYFILE); [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cosasdelinux.wordpress.com&amp;blog=2306795&amp;post=63&amp;subd=cosasdelinux&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://cosasdelinux.wordpress.com/2011/07/01/create-dhcpd-conf-from-csv-file-with-mac-and-hostname/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/59d1db388c49aa581cce180cd8117d40?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cosasdelinux</media:title>
		</media:content>
	</item>
		<item>
		<title>Move files from one day in the same order with some word  to other dir to process</title>
		<link>http://cosasdelinux.wordpress.com/2011/03/11/move-files-from-one-day-in-the-same-order-with-some-word-to-other-dir-to-process/</link>
		<comments>http://cosasdelinux.wordpress.com/2011/03/11/move-files-from-one-day-in-the-same-order-with-some-word-to-other-dir-to-process/#comments</comments>
		<pubDate>Fri, 11 Mar 2011 15:02:21 +0000</pubDate>
		<dc:creator>cosasdelinux</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[bash script]]></category>
		<category><![CDATA[comandos linux]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[linux commands]]></category>
		<category><![CDATA[move files]]></category>
		<category><![CDATA[Move files from one day in the same order with some word to other dir to process]]></category>
		<category><![CDATA[shell command]]></category>

		<guid isPermaLink="false">http://cosasdelinux.wordpress.com/?p=59</guid>
		<description><![CDATA[for i in `ls -lsrt &#124; grep &#8220;Mar 11&#8243; &#124; awk &#8216;{print $10}&#8217; &#124; xargs grep -m 1 -i &#8220;TE-ALTA&#8221; &#124; awk -F &#8220;:&#8221; &#8216;{print $1}&#8217; `; do mv $i /tmp/aprocesar/ ; done<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cosasdelinux.wordpress.com&amp;blog=2306795&amp;post=59&amp;subd=cosasdelinux&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://cosasdelinux.wordpress.com/2011/03/11/move-files-from-one-day-in-the-same-order-with-some-word-to-other-dir-to-process/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/59d1db388c49aa581cce180cd8117d40?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cosasdelinux</media:title>
		</media:content>
	</item>
		<item>
		<title>OpenSSL HOWTO</title>
		<link>http://cosasdelinux.wordpress.com/2011/02/22/openssl-howto/</link>
		<comments>http://cosasdelinux.wordpress.com/2011/02/22/openssl-howto/#comments</comments>
		<pubDate>Tue, 22 Feb 2011 18:19:53 +0000</pubDate>
		<dc:creator>cosasdelinux</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[autofirmar certificado]]></category>
		<category><![CDATA[linux openssl]]></category>
		<category><![CDATA[openssl aut sign]]></category>
		<category><![CDATA[openssl firmar certificado]]></category>
		<category><![CDATA[verisign ceritificado]]></category>

		<guid isPermaLink="false">http://cosasdelinux.wordpress.com/?p=55</guid>
		<description><![CDATA[OpenSSL Command-Line HOWTO Paul Heinlein Initial publication: June 13, 2004 Most recent revision: July 16, 2010 The openssl application that ships with the OpenSSL libraries can perform a wide range of crypto operations. This HOWTO provides some cookbook-style recipes for using it. Introduction The openssl command-line binary that ships with the OpenSSL libraries can perform [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cosasdelinux.wordpress.com&amp;blog=2306795&amp;post=55&amp;subd=cosasdelinux&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://cosasdelinux.wordpress.com/2011/02/22/openssl-howto/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/59d1db388c49aa581cce180cd8117d40?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cosasdelinux</media:title>
		</media:content>
	</item>
		<item>
		<title>awk split text files into columns</title>
		<link>http://cosasdelinux.wordpress.com/2011/02/16/awk-split-text-files-into-columns/</link>
		<comments>http://cosasdelinux.wordpress.com/2011/02/16/awk-split-text-files-into-columns/#comments</comments>
		<pubDate>Wed, 16 Feb 2011 15:42:17 +0000</pubDate>
		<dc:creator>cosasdelinux</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[bash script]]></category>
		<category><![CDATA[comandos linux]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[linux commands]]></category>
		<category><![CDATA[linux script]]></category>
		<category><![CDATA[shell command]]></category>

		<guid isPermaLink="false">http://cosasdelinux.wordpress.com/?p=53</guid>
		<description><![CDATA[awk -F&#8221;:&#8221; &#8216;{ print $1 $3 }&#8217; /etc/passwd with this we open passwd file split fields by &#8220;:&#8221; and print the first and the third column<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cosasdelinux.wordpress.com&amp;blog=2306795&amp;post=53&amp;subd=cosasdelinux&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://cosasdelinux.wordpress.com/2011/02/16/awk-split-text-files-into-columns/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/59d1db388c49aa581cce180cd8117d40?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cosasdelinux</media:title>
		</media:content>
	</item>
		<item>
		<title>vi acentos ñ</title>
		<link>http://cosasdelinux.wordpress.com/2011/02/11/vi-acentos-n/</link>
		<comments>http://cosasdelinux.wordpress.com/2011/02/11/vi-acentos-n/#comments</comments>
		<pubDate>Fri, 11 Feb 2011 15:02:59 +0000</pubDate>
		<dc:creator>cosasdelinux</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[vi acentos]]></category>
		<category><![CDATA[vi enie]]></category>
		<category><![CDATA[vim accent]]></category>
		<category><![CDATA[vim ñ]]></category>

		<guid isPermaLink="false">http://cosasdelinux.wordpress.com/?p=50</guid>
		<description><![CDATA[SI no te funcionan los acentos en vim o vi hace lo siguiente dentro de vi set encoding=latin1 o set encoding=utf-8<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cosasdelinux.wordpress.com&amp;blog=2306795&amp;post=50&amp;subd=cosasdelinux&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://cosasdelinux.wordpress.com/2011/02/11/vi-acentos-n/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/59d1db388c49aa581cce180cd8117d40?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cosasdelinux</media:title>
		</media:content>
	</item>
		<item>
		<title>grep argument too long</title>
		<link>http://cosasdelinux.wordpress.com/2011/02/01/grep-argument-too-long/</link>
		<comments>http://cosasdelinux.wordpress.com/2011/02/01/grep-argument-too-long/#comments</comments>
		<pubDate>Tue, 01 Feb 2011 18:22:36 +0000</pubDate>
		<dc:creator>cosasdelinux</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[argument too long]]></category>
		<category><![CDATA[bash script]]></category>
		<category><![CDATA[comandos linux]]></category>
		<category><![CDATA[grep argument too long]]></category>
		<category><![CDATA[too long]]></category>
		<category><![CDATA[xargs too long]]></category>

		<guid isPermaLink="false">http://cosasdelinux.wordpress.com/?p=45</guid>
		<description><![CDATA[Do, find . -type f &#124; xargs grep -i &#8220;string to grep&#8221;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cosasdelinux.wordpress.com&amp;blog=2306795&amp;post=45&amp;subd=cosasdelinux&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://cosasdelinux.wordpress.com/2011/02/01/grep-argument-too-long/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/59d1db388c49aa581cce180cd8117d40?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cosasdelinux</media:title>
		</media:content>
	</item>
		<item>
		<title>Snmp get oid for traffic network card</title>
		<link>http://cosasdelinux.wordpress.com/2011/01/27/snmp-get-oid-for-traffic-network-card/</link>
		<comments>http://cosasdelinux.wordpress.com/2011/01/27/snmp-get-oid-for-traffic-network-card/#comments</comments>
		<pubDate>Thu, 27 Jan 2011 13:04:19 +0000</pubDate>
		<dc:creator>cosasdelinux</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[comandos linux]]></category>
		<category><![CDATA[get network traffic linux]]></category>
		<category><![CDATA[get oid]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[linux commands]]></category>
		<category><![CDATA[obtener oid placa de red]]></category>
		<category><![CDATA[placa de red oid]]></category>
		<category><![CDATA[Snmp get oid for traffic network card]]></category>
		<category><![CDATA[snmptranslate]]></category>
		<category><![CDATA[traducir snmp]]></category>

		<guid isPermaLink="false">http://cosasdelinux.wordpress.com/?p=43</guid>
		<description><![CDATA[This is a way to get easy the oid for the traffic counter of your network card. 1) get your list of devices to identify your card snmpwalk -On -v 2c -c COMUNITY 192.168.0.1 .1.3.6.1.2.1.2.2.1 you will get a list of oid (for example) .1.3.6.1.2.1.2.2.1.1.1 = INTEGER: 1 .1.3.6.1.2.1.2.2.1.1.65539 = INTEGER: 65539 .1.3.6.1.2.1.2.2.1.2.1 = STRING: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cosasdelinux.wordpress.com&amp;blog=2306795&amp;post=43&amp;subd=cosasdelinux&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://cosasdelinux.wordpress.com/2011/01/27/snmp-get-oid-for-traffic-network-card/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/59d1db388c49aa581cce180cd8117d40?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cosasdelinux</media:title>
		</media:content>
	</item>
		<item>
		<title>backup file with regex cd on the fly</title>
		<link>http://cosasdelinux.wordpress.com/2011/01/25/backup-file-with-regex-cd-on-the-fly/</link>
		<comments>http://cosasdelinux.wordpress.com/2011/01/25/backup-file-with-regex-cd-on-the-fly/#comments</comments>
		<pubDate>Tue, 25 Jan 2011 20:17:43 +0000</pubDate>
		<dc:creator>cosasdelinux</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[backup file with regex cd on the fly]]></category>
		<category><![CDATA[backup on the fly]]></category>
		<category><![CDATA[backup regex]]></category>

		<guid isPermaLink="false">http://cosasdelinux.wordpress.com/?p=40</guid>
		<description><![CDATA[#!/bin/ksh -p clear PRGNAME=${0##*/} print &#8220;Ejecutando $PRGNAME\n&#8221; print &#8220;DIA: [__]\b\b\b\c&#8221; read DIA print &#8220;MES: [__]\b\b\b\c&#8221; read MES DATE=$MES$DIA dirbackup=${RANDOM}cd mkdir -p /tmp/$dirbackup #find /dir/ -name &#8216;[M-S][P-R]?$MES$DIA.322&#8242; -print0 &#124; xargs -0 -i cp {} /tmp/$dirbackup/ find /dir/ -name &#8216;AH1111*&#8217; -print0 &#124; xargs -0 -i cp {} /tmp/$dirbackup/ set &#8212; &#8220;/tmp/$dirbackup&#8221;/* [ -f "$1" ]&#38;&#38; echo &#8220;Files [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cosasdelinux.wordpress.com&amp;blog=2306795&amp;post=40&amp;subd=cosasdelinux&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://cosasdelinux.wordpress.com/2011/01/25/backup-file-with-regex-cd-on-the-fly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/59d1db388c49aa581cce180cd8117d40?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cosasdelinux</media:title>
		</media:content>
	</item>
		<item>
		<title>script burn cd from console (file or directory) with permission</title>
		<link>http://cosasdelinux.wordpress.com/2011/01/25/script-burn-cd-from-console-file-or-directory-with-permission/</link>
		<comments>http://cosasdelinux.wordpress.com/2011/01/25/script-burn-cd-from-console-file-or-directory-with-permission/#comments</comments>
		<pubDate>Tue, 25 Jan 2011 19:26:41 +0000</pubDate>
		<dc:creator>cosasdelinux</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[burn on the fly cd linux]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://cosasdelinux.wordpress.com/?p=37</guid>
		<description><![CDATA[clear function grabodir { #mkisofs -r -R -J -l -L $1 &#124; cdrecord dev=0,0,0 -v &#8211;eject speed=4 - echo &#8220;grabocddirrrrrrrrrrr el &#8221; $1 } function grabofiles { #mkisofs -r -R -J -l -L $1 &#124; cdrecord dev=0,0,0 -v &#8211;eject speed=4 - echo &#8220;grabofiles&#8221; $1 } function Validaciones { if [[ $1 != /usr/u/* &#38;&#38; $1 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cosasdelinux.wordpress.com&amp;blog=2306795&amp;post=37&amp;subd=cosasdelinux&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://cosasdelinux.wordpress.com/2011/01/25/script-burn-cd-from-console-file-or-directory-with-permission/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/59d1db388c49aa581cce180cd8117d40?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cosasdelinux</media:title>
		</media:content>
	</item>
		<item>
		<title>Mouse your mouse every x seconds , mover tu mouse cada x segundos !</title>
		<link>http://cosasdelinux.wordpress.com/2011/01/14/mouse-your-mouse-every-x-seconds-mover-tu-mouse-cada-x-segundos/</link>
		<comments>http://cosasdelinux.wordpress.com/2011/01/14/mouse-your-mouse-every-x-seconds-mover-tu-mouse-cada-x-segundos/#comments</comments>
		<pubDate>Fri, 14 Jan 2011 04:59:47 +0000</pubDate>
		<dc:creator>cosasdelinux</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[linux commands]]></category>
		<category><![CDATA[linux script]]></category>
		<category><![CDATA[mouse move script]]></category>
		<category><![CDATA[mouse no sleep]]></category>
		<category><![CDATA[mouse random]]></category>
		<category><![CDATA[Mouse your mouse every x seconds]]></category>
		<category><![CDATA[mover mouse automatico]]></category>
		<category><![CDATA[mover mouse linux]]></category>
		<category><![CDATA[mover mouse segundos]]></category>
		<category><![CDATA[script move mouse]]></category>
		<category><![CDATA[shell command]]></category>
		<category><![CDATA[simulate mouse move]]></category>

		<guid isPermaLink="false">http://cosasdelinux.wordpress.com/?p=33</guid>
		<description><![CDATA[to move every X seconds your mouse randomly you can run this (you must install xdotool first) while true; do NUMBER=$[ ( $RANDOM % ( $[ 800 - 100 ] + 1 ) ) + 100 ] ; NUMBER2=$[ ( $RANDOM % ( $[ 800 - 100 ] + 1 ) ) + 100 ] [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cosasdelinux.wordpress.com&amp;blog=2306795&amp;post=33&amp;subd=cosasdelinux&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://cosasdelinux.wordpress.com/2011/01/14/mouse-your-mouse-every-x-seconds-mover-tu-mouse-cada-x-segundos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/59d1db388c49aa581cce180cd8117d40?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cosasdelinux</media:title>
		</media:content>
	</item>
	</channel>
</rss>
