Ich möchte meine Ausgabe in Bash ändern, um sie besser anzeigen zu können. Einfach \n
vor das hier setzen. Wie kann ich es ändern .bashrc
? Zum Beispiel:
Die Standardeinstellung ist:
root@comp:$ abc
bash: abc: command not found
Ich will das:
root@comp:$ abc
bash: abc: command not found
Antwort1
Sie können trap
das DEBUG
Signal:
trap 'printf "\n"' DEBUG
DEBUG
Der abgefangene Befehl printf "\n"
wird vor der Ausführung des Befehls ausgeführt, im Gegensatz PROMPT_COMMAND
zu dem, der nach der Ausführung des Befehls ausgeführt wird.
Sie können dies hinzufügen, ~/.bashrc
um es dauerhaft zu machen.
Beispiel:
$ abc
No command 'abc' found, did you mean:
....
$ trap 'printf "\n"' DEBUG
$ abc
No command 'abc' found, did you mean:
....