4c1f9ea239
* Fix for using cvs-safesh with different remote and local username * Extended scpsh implementation w/target variable * Correction of new target message
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
|