author | František Kučera <franta-hg@frantovo.cz> |
Fri, 31 Jul 2020 17:23:00 +0200 | |
branch | v_0 |
changeset 311 | f677eba0c86c |
parent 294 | abbc9bcfbcc4 |
child 329 | 5bc2bb8b7946 |
permissions | -rwxr-xr-x |
#!/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