mirror of
https://git.proxmox.com/git/systemd
synced 2025-08-15 05:16:36 +00: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"
|