Skip to main content
deleted 5 characters in body
Source Link

This can be caused by null charactersbytes in your bash history. Removing lines with null characters may resolve the issue. You can check for them using grep's Perl-regexp mode:

grep -Pa '\x00' ~/.bash_history

This post has suggestions for non-unix systems.

This can be caused by null characters in your bash history. Removing lines with null characters may resolve the issue. You can check for them using grep's Perl-regexp mode:

grep -Pa '\x00' ~/.bash_history

This post has suggestions for non-unix systems.

This can be caused by null bytes in your bash history. Removing lines with null characters may resolve the issue. You can check for them using grep's Perl-regexp mode:

grep -Pa '\x00' .bash_history

This post has suggestions for non-unix systems.

Source Link

This can be caused by null characters in your bash history. Removing lines with null characters may resolve the issue. You can check for them using grep's Perl-regexp mode:

grep -Pa '\x00' ~/.bash_history

This post has suggestions for non-unix systems.