Using gnu grep
:
grep -Pv '(?<!no )issue' file
RegEx Details:
(?<!no )
: Negative lookbehind that asserts a failure if we have word no
followed by a space before current position
issue
: Match word issue
Or using gnu awk
:
awk '/<no issue>/ || !/<issue>/' file
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…