You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Noisy is a command-line utility that injects a customisable amount ofrandom noise into a stream of bytes coming from standard input.
Noisy accomplishes this by flipping a user-defined amount (e.g. 25%) ofbits in the input stream, chosen at random. The resulting (noisy) streamis written to standard output.
Installation
As long as you have a working installation of Go, you can usego get:
Use the-rate command-line flag to specify a floating-point numberbetween 0 and 1 representing how many errors you would like. 0 willleave the input stream untouched, while 1 will flip every bit in yourinput. The default value is 0.25.