mirror of
https://git.freebsd.org/ports.git
synced 2025-05-07 11:20:46 -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
|