aboutsummaryrefslogtreecommitdiff
path: root/mac/Plumb.app/Contents/MacOS/plumb
blob: 850ec0e00f8f6f02fff258f293a1190971c7a36a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

if [ -e ~/.bashrc ] ; then
	. ~/.bashrc
fi
PLAN9=${PLAN9:-/usr/local/plan9}

bin=$PLAN9/bin
IFS=$'\n'

for file in $($bin/macargv)
do
	$bin/macedit "$file"
done