<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">import sys

import autocommand

from jaraco.text import Stripper


def strip_prefix():
    r"""
    Strip any common prefix from stdin.

    &gt;&gt;&gt; import io, pytest
    &gt;&gt;&gt; getfixture('monkeypatch').setattr('sys.stdin', io.StringIO('abcdef\nabc123'))
    &gt;&gt;&gt; strip_prefix()
    def
    123
    """
    sys.stdout.writelines(Stripper.strip_prefix(sys.stdin).lines)


autocommand.autocommand(__name__)(strip_prefix)
</pre></body></html>