'['
: Archive and move to the next newest message']'
: Archive and move to the next newer message
Random Ruminations
'['
: Archive and move to the next newest message']'
: Archive and move to the next newer message
mvim
script as follows to open files in new tabs instead of new windows when starting MacVim from the command line:tabs=true
if
structure at the bottom of the file with the following:# Last step: fire up vim.
if [ "$gui" ]; then
if $tabs && [[ `$binary --serverlist` = "VIM" ]]; then
exec "$binary" -g $opts --remote-tab-silent ${1:+"$@"}
else
exec "$binary" -g $opts ${1:+"$@"}
fi
else
exec "$binary" $opts ${1:+"$@"}
fi
#!/bin/bash
# This script replaces multiple partial strings in multiple files
for n in strpart1 strpart2 strpart3
do
exec perl -pi -e 's/firstpart${n}secondpart/newfirstpart${n}newsecondpart/g' *.htm
done