.....it's being stubborn
This commit is contained in:
parent
942e8a5b47
commit
9669e0ec9d
1 changed files with 1 additions and 5 deletions
|
@ -175,11 +175,7 @@ _generate_summary() {
|
||||||
# column: Align all the columns nicely - ref https://unix.stackexchange.com/a/468048/64687
|
# column: Align all the columns nicely - ref https://unix.stackexchange.com/a/468048/64687
|
||||||
|
|
||||||
export -f __analyse_package;
|
export -f __analyse_package;
|
||||||
find "${dir_sources}" -type f -name "*.deb" -print0 | \
|
find "${dir_sources}" -type f -name "*.deb" -print0 | xargs -0 -n1 -p "$(nproc)" -I{} bash -c 'do_work "{}"' | sort -k1,2V | uniq | column -t -s "$(printf '\t')";
|
||||||
xargs -0 -n1 -p "$(nproc)" -I{} bash -c 'do_work "{}"' | \
|
|
||||||
sort -k1,2V | \
|
|
||||||
uniq | \
|
|
||||||
column -t -s "$(printf '\t')";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
task_generate-summary() {
|
task_generate-summary() {
|
||||||
|
|
Loading…
Reference in a new issue