File: util.sh

package info (click to toggle)
libretro-core-info 1.3.6%2Bgit20160816-1
  • links: PTS
  • area: main
  • in suites: bullseye, buster, stretch
  • size: 1,292 kB
  • ctags: 129
  • sloc: sh: 5,078; makefile: 15
file content (20 lines) | stat: -rw-r--r-- 249 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# vim: set ts=3 sw=3 noet ft=sh : bash

# Lets us avoid use of wc
numwords() {
	echo "$#"
}

find_tool() {
	while [ -n "$1" ]; do
		if [ -n "$1" ] && command -v "$1" > /dev/null; then
			echo "$1"
			return
		fi
		shift
	done
}

do_nothing() {
	:
}