Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

bacon(1) [debian man page]

BACON(1)							       bacon								  BACON(1)

NAME
bacon - small RSpec clone SYNOPSIS
bacon [options] [files | -a] [-- untouched arguments] DESCRIPTION
Ruby options: -e, --eval LINE evaluate a LINE of code -d, --debug set debugging flags (set $DEBUG to true) -w, --warn turn warnings on for your script -I, --include PATH specify $LOAD_PATH (may be used more than once) -r, --require LIBRARY require the library, before executing your script bacon options: -s, --specdox do AgileDox-like output (default) -q, --quiet do Test::Unit-like non-verbose output -p, --tap do TAP (Test Anything Protocol) output -k, --knock do Knock output -o, --output FORMAT do FORMAT (SpecDox/TestUnit/Tap) output -Q, --no-backtrace don't print backtraces -a, --automatic gather tests from ./test/, include ./lib/ -n, --name NAME runs tests matching regexp NAME -t, --testcase TESTCASE runs tests in TestCases matching regexp TESTCASE Common options: -h, --help Show this message --version Show version bacon 1.1.0 July 2011 BACON(1)

Check Out this Related Man Page

SPECRB(1)																 SPECRB(1)

NAME
specrb - standalone test runner for test/spec and Test::Unit test suites SYNOPSIS
specrb [OPTIONS] [FILES | -a ] [-- untouched arguments] DESCRIPTION
The Ruby script specrb allows you to run tests written with test/spec from the command line. It can also be used for plain Test::Unit test suites. You can either specify the names of the test files you want to run, or let specrb find automatically all the tests in your project, by using the -a switch (see TEST/SPEC OPTIONS below). You can also use various options on the command line to pass parameters to the Ruby interpreterm or to modify the behavior of test/spec and/or test/unit. RUBY OPTIONS
-e, --eval LINE evaluate a LINE of code -d, --debug set debugging flags (set $DEBUG to true) -w, --warn turn warnings on for your script -I, --include PATH specify $LOAD_PATH (may be used more than once) -r, --require LIBRARY require the LIBRARY, before executing your script TEST
/SPEC OPTIONS: -s, --specdox do AgileDox-like output --rdox do AgileDox-like output with RDoc formatting -a, --automatic gather tests from ./test/, include ./lib/ TEST
::UNIT OPTIONS: -n, --name NAME runs tests matching regexp NAME -t, --testcase TESTCASE runs tests in TestCases matching regexp TESTCASE COMMON OPTIONS
: -h, --help show a message similar to this manpage --version show version AUTHORS
The test/spec library has been written by Christian Neukirchen <http://purl.org/net/chneukirchen>. This manual page, inspired by the help message of specrb, has been written for the Debian Project by Cedric Boutillier (but may used by others). 2012-06-26 SPECRB(1)
Man Page

7 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

While $$$$$$

db2 connect... LINE=........ while do read LINE A=`echo $LINE|awk -F/ '{print $1}'` B=`echo $LINE|awk -F/ '{print $2}'` done echo $A echo $B db2 terminate script ends here I want to substitute values like 10-hjhj 20=hj 307fgr/45fdg 85fgf56 2fg-lk 10-h 20=hj 307fgr/45gfdg... (5 Replies)
Discussion started by: rollthecoin
5 Replies

2. AIX

topas -P output to file

Hi, I need to output to a file, what will be ftp'ed to windows the output of a topas -P command in AIX. I can't install anything in the server (because it's the bank AIX server) but i need to control and keep the history of the % cpu that my processes use. I tried to use topas -R >>... (7 Replies)
Discussion started by: jtmartins
7 Replies

3. UNIX for Dummies Questions & Answers

Getting user input from inside a while loop?

I'm new to BASH and i'm trying to create a script which is simply put a large find and replace file. This is what I have so far N=0 while read LINE ; do N=$((N+1)) sed 's/'$2'/'$3'/g' $LINE > .temp echo "Changes to file $N = $LINE" echo 'The following changes... (5 Replies)
Discussion started by: Azumandious
5 Replies

4. Web Development

Ajax Post & IE8

I have an Ajax script that runs on IE9 & FF but not IE8...well it runs but there is some sort of memory leak so the script runs slower and slower with each consecutive click because the code being processed is not being cleared each time, or something. I found some articles online and tried them... (0 Replies)
Discussion started by: tifischer
0 Replies

5. Shell Programming and Scripting

For loop scripting

Hi there again, I need some help in figuring out how to execute a for loop command to come up with my desired output. I have individual monthly files and a single file containing a list of location data for 1 year. I want to do a loop where for each monthly file say Jan.hdf, if will read the... (8 Replies)
Discussion started by: ida1215
8 Replies

6. UNIX for Dummies Questions & Answers

Awk: Print out overlapping chunks of file - rows 0-20,10-30,20-40 etc.

First time poster, but the forum has saved my bacon more times than... Lots. Anyway, I have a text file, and wanted to use Awk (or any other sensible program) to print out overlapping sections, or arbitrary length. To describe by example, for file 1 2 3 4 5 etc... I want the out put... (3 Replies)
Discussion started by: matfald
3 Replies

7. UNIX for Beginners Questions & Answers

TCL script to delete a pattern(regexp)

Hi I am writing a TCL script to delete a certain in a file My Input file module bist_logic_inst(a, ab , dhd, dhdh , djdj, hdh, djjd, jdj, dhd, dhp, dk ); input a; input ab; input dhd; input djdj; input dhd; output hdh; output djjd; output jdj; output dk; (1 Reply)
Discussion started by: kshitij
1 Replies