#0x2525
Linux debian-2gb-nbg1 6.1.0-37-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.140-1 (2025-05-22) x86_64
  SOFT : Apache/2.4.62 (Debian) PHP : 8.2.28
/lib/resolvconf/
162.55.61.15

 
[ NAME ] [ SIZE ] [ PERM ] [ DATE ] [ ACT ]
+FILE +DIR
list-records 2.857 KB -rwxr-xr-x 2022-01-05 10:13 R E G D
normalize-resolvconf 0.571 KB -rwxr-xr-x 2022-01-05 10:13 R E G D
REQUEST EXIT
#!/bin/sed -f # Echo stdin with: # comments removed; # initial and terminal whitespace removed; # whitespace strings replaced by single blanks; # leading zeroes removed from nameserver address fields; # first set of zero fields in an IPv6 address collapsed to '::'; # empty lines removed. s/#.*$// s/[[:blank:]]\+$// s/^[[:blank:]]\+// s/[[:blank:]]\+/ /g /^nameserver/!b ENDOFCYCLE s/$/ / s/\([:. ]\)0\+/\10/g s/\([:. ]\)0\([123456789abcdefABCDEF][[:xdigit:]]*\)/\1\2/g /::/b ENDOFCYCLE; s/ \(0[: ]\)\+/ ::/ /::/b ENDOFCYCLE; s/:\(0[: ]\)\+/::/ : ENDOFCYCLE s/[[:blank:]]\+$// /^$/d