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

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