Ich habe mich derzeit entschlossen, meine Doppelmonitore in vertikaler Konfiguration zu testen, und bin auf ein Problem gestoßen, das ich noch nie zuvor hatte: Die Eingangsleitung an meinem Terminal befindet sich zu weit unten auf dem Bildschirm!
Ich habe mich gefragt, ob es eine Möglichkeit gibt, die Ausgabe nach unten zu scrollen, damit die Eingabezeile oben bleibt.
Beispiel: Eine normale Terminalansicht sieht folgendermaßen aus:
PING 8.8.8.8 (8.8.8.8) 56(84) bytes of data.
64 bytes from 8.8.8.8: icmp_req=1 ttl=46 time=28.3 ms
64 bytes from 8.8.8.8: icmp_req=2 ttl=46 time=13.7 ms
64 bytes from 8.8.8.8: icmp_req=3 ttl=46 time=19.1 ms
64 bytes from 8.8.8.8: icmp_req=4 ttl=45 time=20.8 ms
64 bytes from 8.8.8.8: icmp_req=5 ttl=45 time=15.6 ms
64 bytes from 8.8.8.8: icmp_req=6 ttl=46 time=15.3 ms
64 bytes from 8.8.8.8: icmp_req=7 ttl=46 time=15.3 ms
64 bytes from 8.8.8.8: icmp_req=8 ttl=45 time=14.3 ms
64 bytes from 8.8.8.8: icmp_req=9 ttl=45 time=14.3 ms
64 bytes from 8.8.8.8: icmp_req=10 ttl=45 time=15.5 ms
64 bytes from 8.8.8.8: icmp_req=11 ttl=45 time=16.9 ms
64 bytes from 8.8.8.8: icmp_req=12 ttl=45 time=16.3 ms
64 bytes from 8.8.8.8: icmp_req=13 ttl=45 time=20.0 ms
^C
--- 8.8.8.8 ping statistics ---
13 packets transmitted, 13 received, 0% packet loss, time 12017ms
rtt min/avg/max/mdev = 13.773/17.391/28.343/3.812 ms
me@my_computer:~$
und stattdessen hätte ich gerne so etwas:
me@my_computer:~$
rtt min/avg/max/mdev = 13.773/17.391/28.343/3.812 ms
13 packets transmitted, 13 received, 0% packet loss, time 12017ms
--- 8.8.8.8 ping statistics ---
^C
64 bytes from 8.8.8.8: icmp_req=13 ttl=45 time=20.0 ms
64 bytes from 8.8.8.8: icmp_req=12 ttl=45 time=16.3 ms
64 bytes from 8.8.8.8: icmp_req=11 ttl=45 time=16.9 ms
64 bytes from 8.8.8.8: icmp_req=10 ttl=45 time=15.5 ms
64 bytes from 8.8.8.8: icmp_req=9 ttl=45 time=14.3 ms
64 bytes from 8.8.8.8: icmp_req=8 ttl=45 time=14.3 ms
64 bytes from 8.8.8.8: icmp_req=7 ttl=46 time=15.3 ms
64 bytes from 8.8.8.8: icmp_req=6 ttl=46 time=15.3 ms
64 bytes from 8.8.8.8: icmp_req=5 ttl=45 time=15.6 ms
64 bytes from 8.8.8.8: icmp_req=4 ttl=45 time=20.8 ms
64 bytes from 8.8.8.8: icmp_req=3 ttl=46 time=19.1 ms
64 bytes from 8.8.8.8: icmp_req=2 ttl=46 time=13.7 ms
64 bytes from 8.8.8.8: icmp_req=1 ttl=46 time=28.3 ms
PING 8.8.8.8 (8.8.8.8) 56(84) bytes of data.
Ich konnte keine solche Dokumentation oder Frage in den Foren finden. Wenn jemand eine Idee hat, lass es mich wissen! (auch wenn Sie denken, dass es nicht möglich ist)
Vielen Dank!
PS: Ich benutze Ubuntu 12.04
quelle
Nachdem ich nach dieser guten Frage gesucht hatte, fand ich diese Befehle und hoffe, dass sie Ihnen helfen können, damit Sie sich beim Schreiben eines Befehls auf die Oberseite des Terminals konzentrieren können.
Im Terminal versuchen Sie:
Referenz - Site
quelle
Ein weiterer Trick wäre, die Ausgabe Ihres Befehls weiterzuleiten,
tac
die wie folgt aussieht,cat
aber in umgekehrter Reihenfolge gedruckt wird:Beachten Sie, dass ich eine maximale Ping-Nummer (
-c 5
) angeben musste, da sonst derping
Befehl nicht beendet wird und die Pipe bricht. Wie auch immer,tac
ist sehr nützlich für diese Art von Dingen.quelle