R4d (Rad)

R4d is a text oriented macro prosessor made with rust.

R4d is in very early stage, so there might be lots of undetected bugs.

Usage

```bash

Usage : rad [OPTIONS] [FILE]...

Read from file and save to file

rad inputfile.txt -o outfile.txt

Read from file and print to stdout (without error print)

rad input_file.txt 2>/dev/null

Read from standard input and print to file

printf '...text...' | rad -o out_file.txt

Read from stdin and print to stdout (without error print)

printf '...text...' | rad 2>/dev/null ```

Syntax

Macro definition

Definition is also a macro. However it requires specific form not like other macros.

$define(name,arg1 arg2, $arg1() $arg2())

Macro inovokation

Prefix is a dollar sign($) $define(macro_name,a1 a2,$a1() $a2()) $macro_name(arg1, arg2) Macro can be invoked anywhere after the definition. My name is $macro_name(Simon, Creek). converts to My name is Simon Creek.

Special argument $_ is used for iterated value. $foreach("John,Simon,Jane",Name : $_ ) $forloop("5,10",$_th ) converts to ``` Name : John Name : Simon Name : Jane

5th 6th 7th 8th 9th 10th

```

NOTE

An unbalanced right parenthesis ends macro invocation and non-double-quoted comma will change the number or content of arguments. If desirable content includes unbalanced right parentheses or commas, enclose the body with double quotes. Use escaped form of double quote, \" to use literal comma inside double quotes.

Goal

R4d aims to be a modern m4 alternative, which means

In-built macros(WIP)

Implemented

Not implemented

Possibly