mirror of
https://github.com/morgan9e/systemd
synced 2026-04-14 16:37:19 +09:00
7 lines
126 B
Bash
Executable File
7 lines
126 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "$0 $*"
|
|
test "$(basename "$0")" = "script.sh" || exit 1
|
|
test "$1" = "--version" || exit 2
|
|
echo "Life is good"
|