Skip to content

marcus-downing/efunctions

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

66 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

efunctions

Port of Gentoo's functions.sh to other *nixes.

Gentoo provides a number of functions for providing feedback on scripts and services. This is a port of those functions to other linuxes such as Ubuntu, so that scripts continue to work.

![Screenshot of efunctions test.sh] (http://cl.ly/image/2n061s1g3y3t/efunctions%20screenshot.png)

Getting started

Installation

Check out this repository to a safe place - we'd suggest /opt/efunctions, but it's up to you. Then run the installation script.

git clone https://github.com/marcusatbang/efunctions.git /opt/efunctions
cd /opt/efunctions
sudo ./install.sh

This will place a symlink in the traditional place used by Gentoo's functions.sh.

Scripts

Use it in your own scripts with:

#!/bin/sh
. /etc/init.d/functions.sh

Note that bash is quite forgiving with how source files are included, while simpler shells like dash can be more restrictive.

If you want to gain access to the colour code variables, use:

#!/bin/sh
. /etc/init.d/functions.sh
eval $(eval_ecolors)

Commands

einfo, ewarn, eerror

Output a message prefixed with a green, yellow or red asterisk.

einfo "Stuff happens"
ewarn "Dangerous stuff happens"
eerror "Oh noes!"
 * Some message
 * Dangerous stuff happens
 * Oh noes!

(GitHub-flavour markdown doesn't support colours...)

einfon, ewarnn, eerrorn

The same as above, but without the newline at the end of each.

einfon "Stuff happens"
ewarnn "Dangerous stuff happens"
eerrorn "Oh noes!"
 * Some message * Dangerous stuff happens * Oh noes!

ebegin, eend

ebegin outputs a message like einfo, with a trailing ellipsis ...

eend appends a good or bad message to the previous line. It's often called with $?, a variable representing the return value of the last command

ebegin Rejigging the squinks
somecommand
eend $?
 * Rejigging the squinks...                                              [ ok ]

eindent, eoutdent

Increase or decrease the indent on subsequent messages.

einfo "Doing three things"
eindent

ebegin "First thing"
firstcommand
eend $?

ebegin "Second thing"
secondcommand
eend $?

ebegin "Third thing"
thirdcommand
eend $?

eoutdent
einfo "Done"
 * Doing three things
   * First thing...                                                      [ ok ]
   * Second thing...                                                     [ ok ]
   * Third thing...                                                      [ ok ]

eval_ecolors

Evaluate this to get access to the colours it uses.

eval $(eval_ecolors)
echo "$GOOD green $WARN yellow $BAD red"
 green  yellow  red

Non-standard commands

The following commands aren't part of the traditional package, but they're useful so I've added them anyway.

eprefix

Prefixes stdin with the current indent.

eindent
eindent
eindent
somecommand | eprefix
       Command output, prefixed with spaces

If you also add the word info, warn or error, it'll prefix stdin with the appropriate asterisk.

eindent
eindent
eindent
somecommand | eprefix info
       * Command output, prefixed with spaces and an asterisk

About

Port of Gentoo's functions.sh to other *nixes

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages