7 lines
75 B
Bash
Executable File
7 lines
75 B
Bash
Executable File
#!/bin/sh
|
|
if [ "$1" = "version" ]; then
|
|
echo "v2.0.0"
|
|
exit 0
|
|
fi
|
|
exit 1
|