aboutsummaryrefslogtreecommitdiff
path: root/swenu-run.sh
blob: 95d949bd5b8cd20acf286c992c40944d76f0650b (plain)
1
2
3
4
5
6
7
#!/bin/sh

IFS=:
exec $(
	for dir in $PATH; do
		[ -e ${dir} ]  && find ${dir} -executable -printf '%f\n'
	done | sort -u | ./swenu -cal)