Re: [Hampshire] bash error

2021-03-20 Thread Chris Dennis via Hampshire
On 26/02/2021 09:30, Brad Macpherson via Hampshire wrote: G'day Owain, I'm slightly surprised that works at all without a semicolon :-) Don't forget that an ampersand IS a semi-colon, with the added feature that the command that it terminates gets run in the background. Which is very useful

Re: [Hampshire] bash error

2021-02-26 Thread Owain Clarke via Hampshire
Thanks Brad.  The second one solves my conundrum.     'cd ~/somedirectory && (ristretto * & geany progress &)' Owain On 26/02/2021 09:30, Brad Macpherson via Hampshire wrote: G'day Owain, I'm slightly surprised that works at all without a semicolon :-) On 26/02/2021 09:23, Owain Clarke via

Re: [Hampshire] bash error

2021-02-26 Thread Keith Edmunds via Hampshire
The '&' before 'geany' will put the process into the background. Is that what you want? -- Linux Tips: https://www.tiger-computing.co.uk/category/techtips/ -- Please post to: Hampshire@mailman.lug.org.uk Web Interface: https://mailman.lug.org.uk/mailman/listinfo/hampshire LUG URL: http://www

Re: [Hampshire] bash error

2021-02-26 Thread Brad Macpherson via Hampshire
G'day Owain, I'm slightly surprised that works at all without a semicolon :-) On 26/02/2021 09:23, Owain Clarke via Hampshire wrote: Hi.  Could someone help me with the error of my ways?  I'm sure this one is dead simple but I can't see it. I have this alias:-     alias my_alias='cd ~/somedir