Maximilian Ballard

Results 3 comments of Maximilian Ballard

https://github.com/mvertes/txt2man/blob/be89fb412fd443813db6b4d2fcd4223546138757/txt2man#L289-L301 Error goes away when removing this section, so its something in this section causing the issue.

Yeah, this is very annoying and goes against shellcheck standard of using curly braces with variables. See Shellcheck SC2250: > [Prefer putting braces around variable references even when not strictly...

I had this problem, and the issue was that I in my `fstab` I had the `noexec` option set for `tmpfs`. Problem: ```tmpfs /tmp tmpfs defaults,noatime,noexec,mode=1777 0 0"``` Fixed: ```tmpfs...