Friday, February 04, 2005

I had a bunch of run scripts that had line in them "for n in caufd dna360" etc. I wanted to see which ones I had forgotten. Here's what I came up with:


ll generated | cut -c "57-" | cut -f 1 -d "/" | sort > 1

grep for run-all* | awk '{for(i=4;i>=NF;i++){print $i}}' | sort > 2

cat 1 2 | sort | uniq -c | less | grep 1