├── .gitignore ├── INSTALL ├── LICENSE ├── Makefile ├── README.md ├── bin ├── nali-cat ├── nali-dig ├── nali-mtr ├── nali-nslookup ├── nali-ping ├── nali-tracepath └── nali-traceroute ├── configure ├── libqqwry ├── qqwry.c └── qqwry.h ├── nali.c ├── origin ├── README.md └── nali-0.2.tar.gz └── share ├── QQWry.Dat ├── nali.pl └── nali.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/out0fmemory/nali/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | 除非特别声明,否则所有文件均以GPL授权 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/out0fmemory/nali/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/out0fmemory/nali/HEAD/README.md -------------------------------------------------------------------------------- /bin/nali-cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/out0fmemory/nali/HEAD/bin/nali-cat -------------------------------------------------------------------------------- /bin/nali-dig: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | dig $@ 2>&1|nali 3 | -------------------------------------------------------------------------------- /bin/nali-mtr: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | sudo mtr $@ 2>&1|nali 3 | -------------------------------------------------------------------------------- /bin/nali-nslookup: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | nslookup $@ 2>&1|nali 3 | -------------------------------------------------------------------------------- /bin/nali-ping: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ping $@ 2>&1|nali 3 | -------------------------------------------------------------------------------- /bin/nali-tracepath: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | tracepath $@ 2>&1|nali 3 | -------------------------------------------------------------------------------- /bin/nali-traceroute: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | traceroute $@ 2>&1|nali 3 | -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/out0fmemory/nali/HEAD/configure -------------------------------------------------------------------------------- /libqqwry/qqwry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/out0fmemory/nali/HEAD/libqqwry/qqwry.c -------------------------------------------------------------------------------- /libqqwry/qqwry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/out0fmemory/nali/HEAD/libqqwry/qqwry.h -------------------------------------------------------------------------------- /nali.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/out0fmemory/nali/HEAD/nali.c -------------------------------------------------------------------------------- /origin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/out0fmemory/nali/HEAD/origin/README.md -------------------------------------------------------------------------------- /origin/nali-0.2.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/out0fmemory/nali/HEAD/origin/nali-0.2.tar.gz -------------------------------------------------------------------------------- /share/QQWry.Dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/out0fmemory/nali/HEAD/share/QQWry.Dat -------------------------------------------------------------------------------- /share/nali.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/out0fmemory/nali/HEAD/share/nali.pl -------------------------------------------------------------------------------- /share/nali.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/out0fmemory/nali/HEAD/share/nali.sh --------------------------------------------------------------------------------