blob: ed361ccf3ffdf392bcaa18d66a17d8d49273aa6f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
# thousands: update the list of thousands
# (any additions to the file also need corresponding changes to the sed script
# in `release`
[ -z "$WWW_DEFAULT_PATH" ] && echo "WWW_DEFAULT_PATH not set" && exit 1
[ -z "$EDITOR" ] && echo "EDITOR not set" && exit
$EDITOR "$WWW_DEFAULT_PATH/src/thousands"
|