Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 29 Oct 2018 14:27:45 +0000
From:      bugzilla-noreply@freebsd.org
To:        tcltk@FreeBSD.org
Subject:   [Bug 232732] build of expect in lang/expect does not install autoexpect script correctly
Message-ID:  <bug-232732-30738-RW5naMFk6n@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-232732-30738@https.bugs.freebsd.org/bugzilla/>
References:  <bug-232732-30738@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D232732

--- Comment #17 from w.schwarzenfeld@utanet.at ---
Put the manpages in man3, like I have done.

expect-scripts  #I use this name, name it like you want

#!/usr/local/bin/bash
string=3D$@
if [ "$string" =3D=3D "" ]; then
echo "USAGE: expect-scripts command parameters"
echo "example:  expect-scripts autoexpect ftp ftp.myserver.org"
exit
fi
command=3D/usr/local/share/expect/$string
if [ -e /usr/local/share/expect/$1 ]; then
eval "$command"
fi

--=20
You are receiving this mail because:
You are the assignee for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-232732-30738-RW5naMFk6n>