GithubHelp home page GithubHelp logo

bashlog's Introduction

This is log processing full of bachisms. Useful for automating, cron jobs etc. Took hours of my life away.

Just look. This script:

#!/bin/sh

. ./bashlog.sh

# Open log
createlog "./bashlog.test.log"

# This will put stdout to pretty log
runcommand ls ||
    fail "will never fail"

# This will send stdout and stderr to pretty log
runcommand grep grep grep ||
    echo "grep grep grep failed, your K.O."

# Multiline output from other sources we'll put to log, line by line
fortune | logwrapper

# Ok, just say something
log "Nobody will ever look for logs"

# Catch stdout and return code, send stderr to pretty log
filelist=$(evalcommand ls /whereismycat) ||
    echo "cat not found"

# Catch stdout, fail in case of something strange
filelist=$(evalcommand ls) ||
    fail "Ooops, is your system alive?"

echo $filelist

# Exit
ok

Will generate this output...

grep grep grep failed, your K.O.
cat not found
README.markdown bashlog.sh bashlog.test.log bashlog.test.sh

...and this log...

[2014-10-06 17:31:04] ++ ls
[2014-10-06 17:31:04] README.markdown
[2014-10-06 17:31:04] bashlog.sh
[2014-10-06 17:31:04] bashlog.test.log
[2014-10-06 17:31:04] bashlog.test.sh
[2014-10-06 17:31:04] ++ grep grep grep
[2014-10-06 17:31:04] grep: grep: No such file or directory
[2014-10-06 17:31:04] +++ ls /whereismycat
[2014-10-06 17:31:04] ls: /whereismycat: No such file or directory
[2014-10-06 17:31:04] If we can ever make red tape nutritional, we can feed the world.
[2014-10-06 17:31:04] -- R. Schaeberle, "Management Accounting"
[2014-10-06 17:31:04] Nobody will ever look for logs
[2014-10-06 17:31:04] +++ ls
[2014-10-06 17:31:04] Done

Like it? Use it!

Ok, it's public domain code.

bashlog's People

Contributors

thedolphin 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.