SOLVED ... Re: Every download command results in > being displayed!

2022-06-30 Thread Sharon Kimble
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Sorted!

I entered my command into the shell buffer of emacs, and straight away I saw an 
entry '047, which when I corrected it to 1047 allowed me to start downloading, 
so panic stations now cancelled and normal service has been re-enabled! 

- From the pillock
Sharon.
- -- 
A taste of linux = http://www.sharons.org.uk
TGmeds = http://www.tgmeds.org.uk
DrugFacts = https://www.drugfacts.org.uk
Debian 11, fluxbox 1.3.7, emacs 29.0.50, org 9.5.4
-BEGIN PGP SIGNATURE-

iQJRBAEBCgA7FiEELSc/6QwVBIYugJDbNoGAGQr4g1sFAmK9YnMdHGJvdWRpY2Nh
c0Bza2ltYmxlMDkucGx1cy5jb20ACgkQNoGAGQr4g1trkw//Tjlm9ddDie2TE36x
pCSKsr3JUsPGqEnLzglbh/m8zjtxv1INxK6XDzr+fFAPtq9gCGqyIcUB0Z99UkV9
UW8kQVLtbh0MTotMJ1GOhl8BWUjdes7AsFY+kMZafa/JP5RbjsSvGRhevLzaBAUl
tX361IPNcJ0CnzqfaLPnjGDKEqV41Wakmi+gdoz18RlTaJ25s+YDdfmy4Tt8zDfC
nx2ldaQLw1/Wwq56q43mLr1U3j1THwmNyy1d2/vX1BGVifElF7wzBfXdqenHhzRI
C307RWS+lEVKuMw2+vf/9xoGyygZ9RJwv1r4L95ykogb0EZvvEbyWIbAjgGDlD5i
blMC0Um0Ce5X0FYgwHyNa5LwXd0VH/G5qjuHjCZwRnJZNIR9n+DM8hNmNX8BTxBe
kXJTj5bszkFVcgO8pEGinzUgJQMecf+EcmPuliPOeLl43S5aVj3bLLIrC5IWAdZr
1bdMwOO/kEXD49rqG4hQt/tEuGayyDpr7W59sToE8zE8hIbPQJzgNCsSUQFhETE6
khgtjM8s/K+S/xhWNvvs4rxVkwgOXhAY0nOpGpmcTOGDDaFVh8OujdRsDYDE/Afb
BCzBMKQv54937GWokxEKkCmxbeapenPyTWlJnQt1/qPh6Wu99bqWswVTDUkPn0nL
LmNSuOxh+e2jZdPNHfmXUKsCs+k=
=UfXe
-END PGP SIGNATURE-

___
get_iplayer mailing list
get_iplayer@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/get_iplayer


Re: Every download command results in > being displayed!

2022-06-30 Thread Ralph Corderoy
Hi Sharon,

> then issue the following command 'get_iplayer -g 33840' & onwards, but
> no matter what I do the end of the list shows up as '>' and doesn't
> allow me to download anything at all!

My hunch...

One of the parameters you have entered has a single quote, ‘'’, and that
starts a quoted string which can cross the end of the first line into
subsequent lines.  The normal shell's prompt of ‘$’ changes to ‘>’ to
show this line is a continuation of the previous one.

$ echo foo
foo
$ echo foo'bar
> xyzzy'
foobar
xyzzy
$

Remove the quoting behaviour of the single quote by prefixing it with a
backslash, ‘\’, which is an ‘escape hatch’ for proving a literal quote
despite its special meaning.  This is known as ‘escaping’, e.g. ‘escape
the ' with a \’.

-- 
Cheers, Ralph.

___
get_iplayer mailing list
get_iplayer@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/get_iplayer