We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1a034e9 + 2a2e0f1 commit c75c450Copy full SHA for c75c450
scripts/completions/bash/sysdig
@@ -1,5 +1,5 @@
1
# This completion code is based on the cmdline interface as it exists in sysdig
2
-# 0.1.82
+# 0.1.83
3
4
complete -W \
5
' \
scripts/completions/zsh/_sysdig
@@ -1,7 +1,7 @@
#compdef sysdig
6
# this must match fields_info.cpp
7
local DESCRIPTION_TEXT_START=19
@@ -23,7 +23,7 @@ function _filter () {
23
24
_call_program chisel_info sysdig -l 2>/dev/null |
25
while IFS='' read -r line; do
26
- if [[ $line =~ "^([a-zA-Z0-9_]+\.[a-zA-Z0-9_]+) +(.*?)$" ]]; then
+ if [[ $line =~ "^([a-zA-Z0-9_]+\.[a-zA-Z0-9_\.]+) +(.*?)$" ]]; then
27
# starting a new field
28
closefield
29
in_field=1
0 commit comments