mirror of
https://git.proxmox.com/git/systemd
synced 2025-06-13 17:20:04 +00:00
7 lines
124 B
Bash
Executable File
7 lines
124 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "$0 $@"
|
|
test "$(basename $0)" = "script.sh" || exit 1
|
|
test "$1" = "--version" || exit 2
|
|
echo "Life is good"
|