blob: 3714c414c8d394377d7d1e0847f1a5329cb049df (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/sh
choice="$(find "${1:-"$HOME"/docs/school}" \
-type f -path "*/?ursus/index.html" 2> /dev/null |
sed "s;$HOME;~;" | commander -x -d -c)"
[ "$choice" ] || exit 1
firefox --new-window "$choice"
|