9 lines
98 B
Bash
9 lines
98 B
Bash
#!/bin/sh
|
|
|
|
if type which; then
|
|
echo "use which"
|
|
fi
|
|
|
|
if ! type which; then
|
|
echo "well, idk"
|
|
fi
|