mirror of
https://github.com/systemd/systemd.git
synced 2024-12-01 14:23:36 +08:00
8 lines
171 B
Bash
Executable File
8 lines
171 B
Bash
Executable File
#!/bin/sh
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
echo "$0 $*"
|
|
test "$(basename "$0")" = "script.sh" || exit 1
|
|
test "$1" = "--version" || exit 2
|
|
echo "Life is good"
|