> On 2018 Jul 20 , at 10:40 a, Mr Guiguilebreton wrote:
>
> Yes, i now. I test the syntax and the parse error because I programming a
> command interpreter bash in C language and I report the Segmentation Fault
> for help you to debug. If you want I can help you free to solve the problem.
Se
> On 2018 Jul 20 , at 9:27 a, Mr Guiguilebreton wrote:
>
> Hello, check this command in GNU bash, version 3.2.57(1)-release
> (x86_64-apple-darwin17):
>
> ls () { ls -lG;}; ls
You wrote a recursive function with no base case. Don't do that.
ls () { command ls -lG; }; ls
or use an alias