When the executed command length is less than or equal to 64 characters
in total (including the shell invocation) then echoing the command will
raise an exception. This is because .. is inclusive. So we were trying
to take one character too big slice from the command string.
When the executed command length is less than or equal to 64 characters in total (including the shell invocation) then echoing the command will raise an exception. This is because
..
is inclusive. So we were trying to take one character too big slice from the command string.