Sin descripción

Maxim Taran 2abeaf9c0f Fixed misspelling hace 3 semanas
checksum 9f024fd4e7 Added cheksum util hace 7 años
stubwebserver 33c6321679 Refactored stubserver. Changed logger initialization. hace 5 años
udpstubserver 549fd9d40f Renamed logger hace 4 años
wintime 2abeaf9c0f Fixed misspelling hace 3 semanas
.gitignore 45b9a192ed Added convert todo to BUG. hace 4 años
LICENSE faef87a40c Update and rename LICENSE to LICENSE hace 4 años
README.md bc1c33a189 Изменил(а) на 'README.md' hace 2 años
go.mod 942a7aa090 Create module hace 5 años

README.md

Go Reference

maxitools

Different tools for different IT tasks


checksum

Tool for calculating different hashes.

Now available the following hash algorithms:

  • md5 (by default)
  • sha1
  • sha256
  • sha512

How to use

checksum -f <path to file> [-algo ]

Arguments order doesn't matter.

For example:

checksum -algo sha256 -f d:\usr\tmp.xml


wintime

Tool created for the linux "time" purposes - calculate program executing time.

How to use

wintime <command to run>


stubwebserver

Stub server receieve any request and return parameters to output response.

Command line arguments

  • p - server port. By default: 8080.
  • logdir - directory where will be saved log-file with requests. If none (default value) requests will not be saved.
  • stdout - enable print requests to standart output stream. true by default.
  • pfd - directory where will be saved files from POST multidata-form requests. If none (default value) files will not be saved.

For example:

stubserver -p 8080 -logdir "../log" -stdout


udpstubserver

Server listen UDP port and write received packet to console.

Command line arguments

  • p - server port. By default: 8125.

For example:

udpstubserver -p 8125