Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

cadabra(1) [debian man page]

CADABRA(1)																CADABRA(1)

NAME
cadabra - field-theory motivated computer algebra system SYNOPSIS
cadabra DESCRIPTION
Cadabra is a computer algebra system for the manipulation of tensorial expressions. The output of cadabra is either plain text or UTF8 encoded Unicode (see the environment variables described below). The line-breaking prop- erties of the latter are used to wrap large expressions are reasonable points. In addition to the standard output, cadabra can print status information, which is wrapped in special <status>...</status> blocks. OPTIONS
--silent Disables all output, except for output generated by the @print algorithm. --loginput Copy the input into the log file. --input filename Read the indicated file as input before switching to console input. --prompt string Set the prompt of the interactive session to the indicated string. ENVIRONMENT VARIABLES
The following variables toggle various features on or off, depending on whether the variable is set or not: CDB_PRINTSTAR Display a star to indicate products. Without this setting, a space is used. CDB_USE_UTF8 Use UTF8 encoding for output. This in particular will introduce non-breakable spaces to group objects together, as well as zero- width non-breakable spaces to prevent line-breaks after brackets, underscore and caret symbols. When this variable is not set, the output will be plain ASCII without any special symbols. SEE ALSO
xcadabra(1). See the web page at http://www.aei.mpg.de/~peekas/cadabra/ for binaries, example calculations and the full manual. AUTHORS
Kasper Peeters <kasper.peeters@aei.mpg.de> Dec 14, 2006 CADABRA(1)

Check Out this Related Man Page

URLCODING(3)						 libbash urlcoding Library Manual					      URLCODING(3)

NAME
urlcoding -- a Libbash library for encoding and decoding URL's. SYNOPSIS
urlEncodeString [-l] <STRING> urlEncodeFile [-l] <FILE> urlEncodeStream [-l] urlDecodeString <STRING> urlDecodeFile <FILENAME> urlDecodeStream DESCRIPTION
urlcoding is a collection of functions that convert ASCII-text to standard URL's and vice-versa. The AWK code used is based on code by Heiner Steven <heiner.steven@odn.de> The function list: urlEncodeString Creates a URL from an ASCII string urlEncodeFile Converts a file into URL-valid text urlEncodeStream Converts standard input into URL-valid text urlDecodeString Converts a URL-encoded text back to a plain-text form urlDecodeFile Coverts URL-encoded text in a file back to plain text urlDecodeStream Converts URL-encoded standard input to text Detailed interface description follows. The [-l] option for the encoding functions should be used when line-feed characters (' ') are to be encoded as well. All functions print the results of their conversions to standard output. The exit status of all functions is that of the command 'awk', with '0' for success FUNCTIONS DESCRIPTIONS
urlEncodeString [-l] <STRING> Converts STRING - a string of ASCII characters - to URL. urlEncodeFile [-l] <FILE> Coverts FILE of URL-encoded text to plain text urlEncodeStream [-l] Converts text from standard input to URL-text. urlDecodeString <STRING> Converts URL-encoded string STRING back to text. urlDecodeFile <FILENAME> Converts the URL-encoded text in FILE to plain text. urlDecodeStream Converts the URL-encoded text from standard input to plain-text AUTHORS
Alon Keren <alon.keren@gmail.com> SEE ALSO
ldbash(1), libbash(1) Linux Epoch Linux
Man Page

4 More Discussions You Might Find Interesting

1. OS X (Apple)

Looking for a command line tool that converts a .wmv file into .mpg

I need a simple command line executable that allows me to convert a wmv file into an mpg file like this: wmv2mpg inputfile.mwv > outputfile.mpg I cannot find it on internet. I tried installing mencoder but I cannot get it to work. Thanks. (4 Replies)
Discussion started by: karman
4 Replies

2. Shell Programming and Scripting

Dealing with files with spaces in the name

Hello, I'm a computer science major and I'm having problems dealing with file names with spaces in them. Particularly I'm saving a file name in a variable and then using the variable in a compare function i.e. a='te xt.txt' b='file2.txt' cmp $a $b If anyone could help me with this particular... (10 Replies)
Discussion started by: jakethegreycat
10 Replies

3. Shell Programming and Scripting

Adding variable number of space in between two string

Hi, I am looking for the way to add variable number of spaces between two string. e.g input line is a ,bb abc ,bcb pqr ,bfg My output should be something like this a ,bb abc ,bcb pqr ,bfg This text... (9 Replies)
Discussion started by: diehard
9 Replies

4. UNIX for Beginners Questions & Answers

Remove line breaks and extra spaces

Hi, I want to remove all extra spaces, line breaks . Need a new line entry only for term starting"array" For eg: my input is array(), array(), array(), and my expected output is array(), array(), array(), Is it possible using awk? (5 Replies)
Discussion started by: rsi.245
5 Replies