Argument execute is xargs alternative that focus on arguments processing and ordering. Axe main goal is to be simple tool that follows UNIX philosophy do one thing and do it well.
This tool is still under heavy development
echo "foo bar baz" | axe echo {2} {1} {0}
output: baz bar foo
echo "a b c\nd e f" | axe echo {}
output:
a b c
d e f
Explanation: Each new line is treated as a data entry. Echo command will be run for each line. This is equal to calling
echo a b c
echo d e f
echo "lord_of_the_rings.txt" | axe echo "this is file name '{0.0}' and this is file extension '{0.1}'"
output: this is file name 'lord_of_the_rings' and this is file extension 'txt'
echo "a_b c_d e_f" | axe echo {_0}
output: a c e
Archives of precompiled binaries for axe are available for Linux and macOS.
With dra
dra download -i -a -o ~/.local/bin jacek-kurlit/axe
With eget
eget jacek-kurlit/axe --to=~/.local/bin
If you're a Rust programmer, axe can be installed with cargo
.
cargo install axe-cli
Lets consider the following example stdin input:
a b c
d e f
h i j
If we pass it to axe echo {}
axe will call echo 3 times for each line.
On each line space will be treated as an arguments separator.
As result axe will resolve and call echo like this:
echo a b c
echo d e f
echo h i j
Each entry line will be split by arguments separator that can be chosen by the user (by default space). You may then refer to each argument by its index. For example:
echo "a b c" | axe echo {0}
There is only one entry with 3 arguments.
Echo will print first argument which is a
.
Each argument can be splitted into multiple arguments. For example:
echo "a.b c.d e.d_f.g" | axe echo {1.1} {0.0} {2_0}
Axe will read this as follows:
- {1.1} split second argument ('c.d') by '.' and choose second part (
d
) - {0.0} split first argument ('a.b') by '.' and choose first part (
a
) - {2_0} split third argument ('e.d_f.g') by '_' and choose first part (
e.d
)
Arguments can be resolved into arrays. For example:
echo "f1.txt f2.txt f3.txt" | axe echo {.0}
Axe will read this as follows:
{.0} split all arguments by '.' and for each item choose first part (f1, f2, f3
)
You may split each argument into multiple items
echo "f1.txt f2.txt f3.txt" | axe echo {0.} {1}
Axe will read this as follows:
{0.} split first argument by '.' and choose all parts (f1, txt
)
{1} take second argument(f2.txt
)
Output f1 txt f2.txt
Every time I was using xargs command I was frustrated that I cannot tell where I want to place arguments. This missing feature made me decide to create my own tool.
git clone https://github.com/jacek-kurlit/axe
cd axe
cargo build --release
./target/release/axe --version
Axe is most similar to xargs in terms of functionality. Main difference between these tools is that Axe treats input as series of entries and args while xargs treats whole input as single entry. Let's give example to illustrate that
echo "a b c\dd e f" | xargs echo
Will output as
a b c d e f
While
echo "a b c\dd e f" | axe echo
Will output as
a b c
d e f
The reason for that is xargs treats whole input as single entry while axe treats each line as single entry.
Axe has run echo
command twice, treating each new line as arguments for command.
Main feature of axe is argument indexing, this feature is missing in xargs
echo "a b c" | axe echo {0} {1} {2}
Will output as
a b c
For each line of input GNU parallel will execute command with the line as arguments. If no command is given, the line of input is executed. Several lines will be run in parallel. Axe is also doing that but not in parallel. In general axe tries to be simple tool that follows UNIX philosophy while parallel tries to be very robust and featurefull solution
One feature that both these tools share in common is argument indexing
echo "a b c\dd e f" | axe echo {2} {1} {0}
Will output as
c b a
f e d
Same thing in parallel
echo "a b c\nd e f" | parallel --colsep " " echo {3} {2} {1}
Parallel also supports command line arguments
parallel echo {0} ::: a b ::: c d
Will output as
a c
a d
b c
b d
Axe doesn't have support for this and most probably never will as it may be case for separate tool.
On the other hand Axe gives you simple solution for arguments splitting and indexing
echo "f1.txt f2.txt f3.txt" | axe echo {.0}
Will output as
f1 f2 f3
Same output in parallel
echo "f1.txt f2.txt f3.txt" | parallel --colsep " " echo {.}
Since Rust parallel has similar interface to GNU parallel all differences between it and axe are the same as for gnu parallel