Rich, you are splitting your command across multiple lines. Thus, each line
is being interpreted as a single command.
${VERSION} evaluates to 14.2, and returns error: command not found because
it is not a command..
For the lines that include arguments to rsync, add a \, like so
rsync --delete -HrlptD --progress \
rsync:http://bear.alienbase.nl/mirrors/people/alien/multilib/${VERSION}/ \
${VERSION} # no \ on this line, its the end of the command
#echo ...done.
Or just put all the args on a single line.
On Wed, Nov 13, 2019 at 11:54 AM wes <[email protected]> wrote:
> On Wed, Nov 13, 2019 at 8:33 AM Rich Shepard <[email protected]>
> wrote:
>
> >
> > rsync:http://bear.alienbase.nl/mirrors/people/alien/multilib/${VERSION}/
> >
> >
> What happens if you remove the http: in this line? So it would look like:
>
> rsync://bear.alienbase.nl/mirrors/people/alien/multilib/${VERSION}/
> <http://bear.alienbase.nl/mirrors/people/alien/multilib/$%7BVERSION%7D/>
>
> -wes
> _______________________________________________
> PLUG mailing list
> [email protected]
> http://lists.pdxlinux.org/mailman/listinfo/plug
>
_______________________________________________
PLUG mailing list
[email protected]
http://lists.pdxlinux.org/mailman/listinfo/plug