~ubuntu-branches/ubuntu/gutsy/stunnel4/gutsy

« back to all changes in this revision

Viewing changes to tools/script.sh

  • Committer: Bazaar Package Importer
  • Author(s): Julien Lemoine
  • Date: 2004-06-07 21:23:37 UTC
  • Revision ID: james.westby@ubuntu.com-20040607212337-5xh3y0l6jplx3v0y
Tags: upstream-4.050
ImportĀ upstreamĀ versionĀ 4.050

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/bash
 
2
 
 
3
echo "client script started"
 
4
/usr/local/sbin/stunnel -fd 10 \
 
5
    11<&0 <<EOT 10<&0 0<&11 11<&-
 
6
client=yes
 
7
connect=www.mirt.net:443
 
8
EOT
 
9
echo "client script finished"
 
10