Update list-cli-tools.ps1

This commit is contained in:
Markus Fleschutz 2021-07-22 20:50:01 +02:00
parent 5753420636
commit 06d42a1b15

View File

@ -27,40 +27,99 @@ function CheckFor { param([string]$Cmd)
} }
function ListTools { function ListTools {
CheckFor 7z
CheckFor ant
CheckFor apt
CheckFor apt-get
CheckFor amixer
CheckFor aplay
CheckFor ar
CheckFor arecord
CheckFor at CheckFor at
CheckFor awk
CheckFor basename
CheckFor bc
CheckFor cc
CheckFor cksum
CheckFor clang
CheckFor curl CheckFor curl
CheckFor cut
CheckFor diff
CheckFor find CheckFor find
CheckFor ftp
CheckFor gcc
CheckFor gdb
CheckFor git CheckFor git
CheckFor gpg
CheckFor help CheckFor help
CheckFor ipfs CheckFor ipfs
CheckFor java
CheckFor lsb_release
CheckFor lzma
CheckFor make
CheckFor md5sum
CheckFor mkfifo
CheckFor nice
CheckFor nroff
CheckFor nslookup
CheckFor openssl
CheckFor perl
CheckFor ping CheckFor ping
CheckFor ping6 CheckFor ping6
CheckFor printf
CheckFor python
CheckFor regedit CheckFor regedit
CheckFor replace CheckFor replace
CheckFor robocopy CheckFor robocopy
CheckFor rsh
CheckFor rsync
CheckFor rundll32 CheckFor rundll32
CheckFor scp
CheckFor sha1sum
CheckFor sha256sum
CheckFor sha512sum
CheckFor ssh CheckFor ssh
CheckFor ssh-keygen CheckFor ssh-keygen
CheckFor sort CheckFor sort
CheckFor split
CheckFor strace
CheckFor strings
CheckFor strip
CheckFor sudo
CheckFor tail
CheckFor tar CheckFor tar
CheckFor tasklist CheckFor tasklist
CheckFor tee
CheckFor time
CheckFor top
CheckFor tskill CheckFor tskill
CheckFor tzsync CheckFor tzsync
CheckFor uniq
CheckFor vi
CheckFor vim
CheckFor vulkaninfo CheckFor vulkaninfo
CheckFor waitfor CheckFor waitfor
CheckFor wakeonlan
CheckFor wget CheckFor wget
CheckFor where CheckFor where
CheckFor whatis
CheckFor which CheckFor which
CheckFor whoami CheckFor whoami
CheckFor wput CheckFor wput
CheckFor write CheckFor write
CheckFor xcopy CheckFor xcopy
CheckFor yes
CheckFor zip CheckFor zip
CheckFor zipcloak
CheckFor zipdetails
CheckFor zipgrep
CheckFor zipinfo
CheckFor zipnote
CheckFor zipsplit
CheckFor zsh
} }
try { try {
"List of Available CLI Tools"
"==========================="
ListTools | format-table -property @{e='Name';width=12},@{e='Version';width=13},@{e='Location';width=45},@{e='FileSize';width=10} ListTools | format-table -property @{e='Name';width=12},@{e='Version';width=13},@{e='Location';width=45},@{e='FileSize';width=10}
exit 0 exit 0
} catch { } catch {