relpipe-data/examples/runnable-jars.sh
author František Kučera <franta-hg@frantovo.cz>
Sat, 06 Jun 2020 01:57:24 +0200
branchv_0
changeset 297 192b0059a6c4
parent 294 abbc9bcfbcc4
child 329 5bc2bb8b7946
permissions -rwxr-xr-x
Release v0.16 – ODBC in SQL + JACK MIDI

#!/bin/bash

findFiles() {
	find ~/.m2/ -iname '*.jar' -printf '%p\0';
}

fetchAttributes() {
	relpipe-in-filesystem \
		--parallel 4 \
		--file path \
		--streamlet jar_info;
}

filterRunable() {
	relpipe-tr-awk --relation '.*' --where 'main_class';
}

shortenPath() {
	relpipe-tr-sed '.*' 'path' "^$HOME/?" "~/";
}

findFiles | fetchAttributes | filterRunable | shortenPath | relpipe-out-tabular