Git Product home page Git Product logo

bash-utils's Introduction

If I was going to the trouble of wirting the code, why not put it online?

==
tp
==

Summary
-------
A program that lets you type into a pipeline.

Example
-------

	$ tp | sed -e "s/^/You just typed: /g"

Pro-tip
-------
Use rlwrap to give you a command history (i.e. hit UP and DOWN to replay commands)

	$ rlwrap tp | sed -e "s/^/You just typed: /g"



=======
hex2bin
=======

Summary
-------
A dumb little program that converts two hex characters at a time into raw binary bytes.
Accepts upper- and/or lower-case hex digits. Ignores all whitespace, but gives an error
for non-hex characters.

Example
-------
	$ echo "31 32 33 48 65 6c 6c 6f 0a" | hex2bin 

Protip
------
Use `hex2bin imm` for "immediate-mode" processing. Normally, hex2bin takes advantage of
stdio buffering to improve performance, but in an interactive setting this means you 
would have to give 4096 characters before hex2bin creates any output. 

	$ tp | hex2bin imm | od -t x1 -An

=====
eswap
=====

Summary
-------
Swaps endianness of 32-bit words. In other words, reads exactly 4 bytes at a time then
spits them out in reverse order. Does not use stdio buffering, so expect performance to
be really bad.

Example
-------
	$ echo "DEADBEEF" | hex2bin | eswap | od -t x1 -An

bash-utils's People

Contributors

esophagus-now avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.