mirror of
https://git.freebsd.org/ports.git
synced 2025-05-18 18:13:12 -04:00
6 lines
94 B
Bash
6 lines
94 B
Bash
#!/bin/sh
|
|
if [ "$2" = "-l" ]; then
|
|
exec safesh $3@$1 -- "$@"
|
|
else
|
|
exec safesh $1 -- "$@"
|
|
fi
|