Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

nunit-console(1) [debian man page]

nunit-console(1)					      General Commands Manual						  nunit-console(1)

NAME
nunit-console - Test-based front-end to NUnit SYNOPSIS
nunit-console [assemblies] [options] DESCRIPTION
nunit-console is a simple but powerful front-end to NUnit, a testing framework for .NET. It will run all or some tests from the assemblies specified as arguments and display the results. Results can be written in either XML or plain text. OPTIONS
/fixture=STR Run specified fixture /config=STR Project configuration to load /xml=STR Write test result output data to specified file /transform=STR Name of transformation file to run on XML output file. /xmlConsole Print XML to the console. /output=STR File to receive regular test output /err=STR File to reveive test error output /labels Label each test in output. /include=STR Test categories to include (may contain wildcards) /exclude=STR Test categories to exclude (may contain wildcards) /noshadow Disable shadow copy /thread Run tests on a seperate thread. /wait Wait for input before closing window. /nologo Do no show credits at startup. /help Show list of available arguments. SEE ALSO
/usr/share/doc/nunit/html AUTHOR
This manpage was written by Jelmer Vernooij <jelmer@samba.org> for the Debian project (but may be used by others). 1 June 2005 nunit-console(1)

Check Out this Related Man Page

MECAB(1)							       MeCab								  MECAB(1)

NAME
mecab - Yet Another Part-of-Speech and Morphological Analyzer SYNOPSIS
mecab [options] files DESCRIPTION
MeCab: Yet Another Part-of-Speech and Morphological Analyzer Copyright(C) 2001-2008 Taku Kudo Copyright(C) 2004-2008 Nippon Telegraph and Telephone Corporation -r, --rcfile=FILE use FILE as resource file -d, --dicdir=DIR set DIR as a system dicdir -u, --userdic=FILE use FILE as a user dictionary -l, --lattice-level=INT lattice information level (default 0) -D, --dictionary-info show dictionary information and exit -a, --all-morphs output all morphs(default false) -O, --output-format-type=TYPE set output format type (wakati,none,...) -p, --partial partial parsing mode -F, --node-format=STR use STR as the user-defined node format -U, --unk-format=STR use STR as the user-defined unk format -B, --bos-format=STR use STR as the user-defined bos format -E, --eos-format=STR use STR as the user-defined eos format -x, --unk-feature=STR use STR as the feature for unknown word -b, --input-buffer-size=INT set input buffer size (default 8192) -P, --dump-config dump MeCab parameters -M, --open-mutable-dictionary open dictioanry with mutable mode (experimental) -C, --allocate-sentence allocate new memory for input sentence -N, --nbest=INT output N best results (default 1) -t, --theta=FLOAT set temparature parameter theta (default 0.75) -c, --cost-factor=INT set cost factor (default 700) -o, --output=FILE set the output file name -v, --version show the version and exit. -h, --help show this help and exit. mecab of 0.98pre1 March 2009 MECAB(1)
Man Page

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Converting the case of the string?

Hi i have a string value in a variable STR eg. STR="ABSDSCSFS" How can be convert it to LOWERCASE in the script? Thanks (5 Replies)
Discussion started by: skyineyes
5 Replies

2. UNIX for Dummies Questions & Answers

Searching for a string variable

Hi ... I have a string variable STR = "This is a test message" I have a file abc.txt that I am searching for the occurence of the string STR ... I am using the command in a script cat abc.txt | grep $STR It identifies each space as a seperator and prints word by word. How to... (2 Replies)
Discussion started by: mattrix
2 Replies

3. Shell Programming and Scripting

Inserting a column in a file

Hi I have the following info in a file file1 ABCD DSFD sdfsd YUISA I want to add a column to the file file1 like the below. STR ABCD STR DSFD STR sdfsd STR YUISA Is there any way in sed or awk to do it. Regards Dhana (7 Replies)
Discussion started by: dhanamurthy
7 Replies

4. Shell Programming and Scripting

Slow looping

Looks like I'm hogging the board this morning. This links to my previous thread, but it's a seperate issue so I though I would start a seperate thread. :) I have the following bit of script that works but takes ages to run due to the size of the file (hundreds of thousands of rows of data). Can... (1 Reply)
Discussion started by: dlam
1 Replies

5. Shell Programming and Scripting

select some text from a test dependng on pattern

I have some absolute file location $INSTALL_BASEPATH/onereview-5.0/resources/commons-messages/commonmessages_default.properties $INSTALL_BASEPATH/onereview-5.0/orv-deploy/config-console.war/WEB-INF/classes/com/connectiva/configuration/console/resource/configurationBundle.properties I need to... (3 Replies)
Discussion started by: mnmonu
3 Replies

6. Shell Programming and Scripting

Perl function extraction

The log file reads as follows. D function_add() ADD input data 1021214 0 VAR1 STR 10 0 VAR2 STR 20 0 VAR3 STR 1 SUM=VAR1+VAR2 D function_add() ADD output data 1021267 0 DISPLAY SUM D function_sub() SUB input data 1021214 0 VAR1 STR 10 0 VAR2 STR 20 0 VAR3 STR 1 sub=VAR1-VAR2 D... (2 Replies)
Discussion started by: vkca
2 Replies

7. Shell Programming and Scripting

AWK Script and Commandline difference

Hey there, I just stumbled upon a difference between using awk on the commandline and using it in a shellscript. I have a variable, e.g.: PROG=vim then i want to check if the package with this name is installed: TEMPVAL=$(dpkg -l | awk '{ if ($2 == "$PROG") print $2 }') (Im using... (10 Replies)
Discussion started by: MrSnail
10 Replies

8. UNIX for Dummies Questions & Answers

counting occurrence of characters in a string

Hello, I have a string like this 0:1:2:0:2:2:4:0:0:0:-200:500...... what i want is to break down how many different characters are there and their count. For example for above string it should display 0 - 5 times 1 - 1 times 2 - 3 times 4 - 1 times . . . I am stuck in writing... (8 Replies)
Discussion started by: exit86
8 Replies

9. Shell Programming and Scripting

Help with Using "while" loop to output series of numbers

Trying to use "while" loop command to create a series of numbers that looks like the following: 0 . 1 0 . 2 1 0 . 3 2 1 0 . 4 3 2 1 0 . 5 4 3 2 1 0 . 6 5 4 3 2 1 0 . 7 6 5 4 3 2 1 0 . 8 7 6 5 4 3 2 1 0 . 9 8 7 6 5 4 3 2 1 0 . I am very new to shell scripting and any help would be... (7 Replies)
Discussion started by: tarlz
7 Replies