source: locker/bin/scripts-ssh @ 463

Last change on this file since 463 was 463, checked in by andersk, 17 years ago
ssh sucks.
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 339 bytes
Line 
1#!/bin/bash
2
3lname=$1
4shift
5
6exec ssh \
7        -o GSSAPIAuthentication=yes \
8        -o GSSAPIDelegateCredentials=no \
9        -o PreferredAuthentications=gssapi-with-mic \
10        -o ForwardX11=no \
11        -o GlobalKnownHostsFile=/afs/athena.mit.edu/contrib/scripts/ssh/known_hosts \
12        -o UserKnownHostsFile=/dev/null \
13        scripts.mit.edu -l "$lname" "$(printf "%q " "$@")"
Note: See TracBrowser for help on using the repository browser.