2010-10-27 18:22:03 -07:00
|
|
|
#!/bin/bash
|
2011-10-12 13:18:32 -04:00
|
|
|
|
2011-11-28 10:09:26 -05:00
|
|
|
if [ -e ~/.bashrc ] ; then
|
|
|
|
|
. ~/.bashrc
|
|
|
|
|
fi
|
2010-10-27 18:22:03 -07:00
|
|
|
PLAN9=${PLAN9:-/usr/local/plan9}
|
2011-10-12 13:18:32 -04:00
|
|
|
|
|
|
|
|
bin=$PLAN9/bin
|
|
|
|
|
IFS=$'\n'
|
|
|
|
|
|
|
|
|
|
for file in $($bin/macargv)
|
|
|
|
|
do
|
2014-12-23 20:45:35 -08:00
|
|
|
$bin/macedit "$file"
|
2011-10-12 13:18:32 -04:00
|
|
|
done
|