Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
envrcd
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
isgphys
envrcd
Commits
8bec423b
Commit
8bec423b
authored
8 months ago
by
Sven Mäder
Browse files
Options
Downloads
Patches
Plain Diff
Update prettyping
parent
b41c6245
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
profile/_assets/bin/prettyping
+14
-11
14 additions, 11 deletions
profile/_assets/bin/prettyping
with
14 additions
and
11 deletions
profile/_assets/bin/prettyping
+
14
−
11
View file @
8bec423b
...
...
@@ -9,11 +9,14 @@
# * ping (from iputils)
#
# More information:
# http://denilsonsa.github.io/prettyping/
# http
s
://denilsonsa.github.io/prettyping/
# https://github.com/denilsonsa/prettyping
# http://
www
.reddit.com/r/linux/comments/1op98a/prettypingsh_a_better_ui_for_watching_ping/
# http
s
://
old
.reddit.com/r/linux/comments/1op98a/prettypingsh_a_better_ui_for_watching_ping/
# Third-party demonstration video: https://www.youtube.com/watch?v=ziEMY1BcikM
# TODO: Test in original-awk:
# https://aur.archlinux.org/packages/original-awk
# https://sources.debian.org/src/original-awk/
# TODO: Adjust how many items in the legend are printed based on the terminal width.
#
# TODO: Detect the following kinds of message and avoid printing it repeatedly.
...
...
@@ -35,7 +38,7 @@
# TODO: Autodetect the width of printf numbers, so they will always line up correctly.
#
# TODO: Test the behavior of this script upon receiving out-of-order packets, like these:
# http://www.blug.linux.no/rfc1149/pinglogg.txt
#
https://web.archive.org/web/20130531083142/
http://www.blug.linux.no/rfc1149/pinglogg.txt
#
# TODO? How will prettyping behave if it receives a duplicate response?
...
...
@@ -75,7 +78,7 @@ EOF
}
# Thanks to people at #bash who pointed me at
# http://bash-hackers.org/wiki/doku.php/scripting/posparams
# http
s://web.archive.org/web/20100301171512/https
://bash-hackers.org/wiki/doku.php/scripting/posparams
parse_arguments
()
{
USE_COLOR
=
1
USE_MULTICOLOR
=
1
...
...
@@ -176,7 +179,7 @@ parse_arguments() {
fi
# Workaround for mawk:
# http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=593504
# http
s
://bugs.debian.org/cgi-bin/bugreport.cgi?bug=593504
local
version
=
"
$(
echo
|
"
${
AWK_BIN
}
"
-W
version 2>&1
)
"
if
[[
"
${
version
}
"
==
mawk
*
]]
;
then
AWK_PARAMS+
=(
-W
interactive
)
...
...
@@ -639,8 +642,8 @@ BEGIN {
ESC_RED_ON_YELLOW = "\033[43;31m"
}
# Other escape codes, see:
# http://en.wikipedia.org/wiki/ANSI_escape_code
# http://invisible-island.net/xterm/ctlseqs/ctlseqs.html
# http
s
://en.wikipedia.org/wiki/ANSI_escape_code
# http
s
://invisible-island.net/xterm/ctlseqs/ctlseqs.html
ESC_NEXTLINE = "\n"
ESC_CURSORUP = "\033[A"
ESC_CURSORDOWN = "\033[B"
...
...
@@ -652,7 +655,7 @@ BEGIN {
ESC_UNSAVEPOS = "\0338"
# I am avoiding these escapes as they are not listed in:
# http://vt100.net/docs/vt100-ug/chapter3.html
# http
s
://vt100.net/docs/vt100-ug/chapter3.html
#ESC_PREVLINE = "\033[F"
#ESC_SAVEPOS = "\033[s"
#ESC_UNSAVEPOS = "\033[u"
...
...
@@ -742,7 +745,7 @@ BEGIN {
############################################################
# Main loop
{
if ( $0 ~ /^[0-9]+ bytes from .*
:
icmp_[rs]eq=[0-9]+ ttl=[0-9]+ time=[0-9.]+ *ms/ ) {
if ( $0 ~ /^[0-9]+ bytes from .*
[:,]
icmp_[rs]eq=[0-9]+
(
ttl
|hlim)
=[0-9]+ time=[0-9.]+ *ms/ ) {
# Sample line from ping:
# 64 bytes from 8.8.8.8: icmp_seq=1 ttl=49 time=184 ms
if ( other_line_times >= 2 ) {
...
...
@@ -751,7 +754,7 @@ BEGIN {
# $1 = useless prefix string
# $2 = icmp_seq
# $3 = ttl
# $3 = ttl
/hlim
# $4 = time
# This must be called before incrementing the last_seq variable!
...
...
@@ -778,7 +781,7 @@ BEGIN {
print_statistics_bar_if_terminal()
} else if ( $0 ~ /^.*onnected to.*, seq=[0-9]+ time=[0-9.]+ *ms/ ) {
# Sample line from httping:
# connected to 200.149.119.168:80 (273 bytes), seq=0 time=129.86 ms
# connected to 200.149.119.168:80 (273 bytes), seq=0 time=129.86 ms
if ( other_line_times >= 2 ) {
other_line_finished_repeating()
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment