Code Monkey home page Code Monkey logo

gwc's Introduction

gwc

A golang version of the unix tool wc

This entirely go version of wc vaguely follows the options for the FreeBSD & MacOS version of wc. It does not, however, implement the --libxo option.

Usage: wc -Llwcm [file ...]

-L : Writes the length of the line with the most bytes (default), or the one with the most chars (-m). If more than one file is provided, the longest line in all of the files will be provided in the final total.

-c : Prints out the number of bytes for each input to stdout. Cancels out the -m flag.

-m : Prints out the number of multibyte characters to stdout.

-w : Prints out the number of words to stdout

This is written entirely in go using only one library from outside the standard library: https://github.com/jessevdk/go-flags. This was because the default flag parser in go uses plan-9 style flag arguments which doesn't allow you to combine multiple options together (ie gwc -wcl). My aim was to make this as similar to the real tool as possible.

The biggest thing I learned here is how non-standard this standard unix tool is accross platforms. Each version across FreeBSD, Linux, NetBSD, and OpenBSD, all have different options or different ways of interpreting certain features (does -c or -m take precedence? This isn't the same across each platform).

gwc's People

Contributors

jeffreysmith avatar

Stargazers

 avatar

Watchers

 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.