8 lines
155 B
Bash
Executable File
8 lines
155 B
Bash
Executable File
#!/bin/sh
|
||
# SPDX-License-Identifier: MIT
|
||
# Copyright (c) 2025 Julian Prein
|
||
#
|
||
# Remove ANSI escape sequences.
|
||
|
||
env LC_ALL=C sed 's/\[[0-?]*[ -/]*[@-~]//g'
|