<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:admin="http://webns.net/mvcb/"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
	<channel>
	  <title>Ask MetaFilter questions tagged with textfile</title>
      <link>http://ask.metafilter.com/tags/textfile</link>
      <description>Questions tagged with 'textfile' at Ask MetaFilter.</description>
	  <pubDate>Mon, 13 Apr 2009 06:11:30 -0800</pubDate> <lastBuildDate>Mon, 13 Apr 2009 06:11:30 -0800</lastBuildDate>

      <language>en-us</language>
	  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
	  <ttl>60</ttl>	  
	<item>
	<title>extract email addresses from garbage text?</title>
	<link>http://ask.metafilter.com/119354/extract%2Demail%2Daddresses%2Dfrom%2Dgarbage%2Dtext</link>	
	<description>I have a ton of garbage text with about 100 email addresses scattered within. I want a text file containing just those email addresses. Is there an MS Word search/replace query that will do that? What is it? (Or is there another way?)</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.119354</guid>
	<pubDate>Mon, 13 Apr 2009 06:11:30 -0800</pubDate>
	<category>search</category>
	<category>textfile</category>
	<dc:creator>stupidsexyFlanders</dc:creator>
	</item>
	<item>
	<title>How to Integrate &quot;Repeating Tasks&quot; Into a Text File To-Do System?</title>
	<link>http://ask.metafilter.com/95940/How%2Dto%2DIntegrate%2DRepeating%2DTasks%2DInto%2Da%2DText%2DFile%2DToDo%2DSystem</link>	
	<description>I recently switched over to a plain text file as my to-do list; I can structure it the way I want, it is an absolute cinch to access in any one of a hundred zillion different ways, it&apos;s crossplatform, and so on.  However, I am running into one methodology I can&apos;t figure out how to translate into the &quot;plain text&quot; world, and that is repeating tasks. I am wondering how people who also keep their to-do lists in text files handle repeating tasks.  I&apos;d like to specifically exclude the solutions of loading repeating tasks into a calendaring program or employing a third-party application to create them (i.e. Taskpaper &amp;amp; AppleScript, or Remind).  I&apos;m really looking more for how you handle it in simply in the world of plain text.&lt;br&gt;
&lt;br&gt;
Also, to open it up a little, I&apos;m curious as to what little mechanisms or mindhacks or systems you may employ within your text-file to-do list, so please feel free to share that, too (although I &lt;i&gt;am&lt;/i&gt; primarily interested in the repeating tasks question).&lt;br&gt;
&lt;br&gt;
Thanks!</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.95940</guid>
	<pubDate>Mon, 07 Jul 2008 10:46:41 -0800</pubDate>
	<category>repeating</category>
	<category>repetition</category>
	<category>resolved</category>
	<category>text</category>
	<category>textfile</category>
	<category>todo</category>
	<dc:creator>WCityMike</dc:creator>
	</item>
	<item>
	<title>File diffs</title>
	<link>http://ask.metafilter.com/11745/File%2Ddiffs</link>	
	<description>I have two versions of a largeish text file, one a slightly modified version of the other. Is there any app I can run in Xp that would report the differences between the two on a line-to-line basis? Could it also do the same for a whole mess of corresponding text files within a large directory structure?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2004:site.11745</guid>
	<pubDate>Sat, 13 Nov 2004 14:35:51 -0800</pubDate>
	<category>compare</category>
	<category>diff</category>
	<category>recommendation</category>
	<category>software</category>
	<category>textfile</category>
	<category>windows</category>
	<category>xp</category>
	<dc:creator>signal</dc:creator>
	</item>
	<item>
	<title>Is there any easy command or application that will randomise lines in a text file?</title>
	<link>http://ask.metafilter.com/11714/Is%2Dthere%2Dany%2Deasy%2Dcommand%2Dor%2Dapplication%2Dthat%2Dwill%2Drandomise%2Dlines%2Din%2Da%2Dtext%2Dfile</link>	
	<description>Is there any easy command or application that will randomise lines in a text file? Answer: yes, and as usual it turns up immediately after asking the question. For those interested:&lt;br&gt;
&lt;br&gt;
#!/usr/bin/perl&lt;br&gt;
# Program to output lines of file in random order&lt;br&gt;
&lt;br&gt;
# Read File&lt;br&gt;
while (&lt;&gt;) {&lt;br&gt;
	push(foo, $_);&lt;br&gt;
}&lt;br&gt;
&lt;br&gt;
# Shuffle lines&lt;br&gt;
srand;&lt;br&gt;
for (0..$#foo) {&lt;br&gt;
	$r = rand($#foo+1);&lt;br&gt;
	($foo[$r], $foo[$_]) = ($foo[$_], $foo[$r]);&lt;br&gt;
}&lt;br&gt;
&lt;br&gt;
# Print it out&lt;br&gt;
for (0..$#foo) {&lt;br&gt;
	print $foo[$_];&lt;br&gt;
}&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
perl [inputfile] &amp;gt; [outputfile]&lt;br&gt;
&lt;br&gt;
My thanks to &lt;a href=&quot;http://lists.debian.org/debian-user/1997/03/msg00905.html&quot;&gt;Steve&lt;/a&gt; who answered me seven and a half years ago.&lt;/&gt;</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2004:site.11714</guid>
	<pubDate>Fri, 12 Nov 2004 06:55:58 -0800</pubDate>
	<category>application</category>
	<category>commandline</category>
	<category>computers</category>
	<category>random</category>
	<category>software</category>
	<category>textfile</category>
	<dc:creator>humuhumu</dc:creator>
	</item>
	
	</channel>
</rss>

