mirror of
https://github.com/samba-team/samba.git
synced 2025-05-30 01:05:50 +03:00
13 lines
123 B
Bash
Executable File
13 lines
123 B
Bash
Executable File
#!/bin/sh
|
|
|
|
plantest() {
|
|
name=$1
|
|
env=$2
|
|
shift 2
|
|
cmdline="$*"
|
|
echo "-- TEST --"
|
|
echo $name
|
|
echo $env
|
|
echo $cmdline
|
|
}
|