summaryrefslogtreecommitdiff
path: root/dot_config/zsh/functions/xfirstcmd
blob: 72c173af8b312a4f89a601e1603595b1fe523b6e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# -*- mode: sh -*- vim: ft=zsh

local cmd
for cmd {
	if [[ -x =$cmd ]] {
		echo $cmd
		return 0
	}
}
return 1