.....it's being stubborn

This commit is contained in:
Starbeamrainbowlabs 2020-03-23 01:46:58 +00:00
parent 942e8a5b47
commit 9669e0ec9d
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 1 additions and 5 deletions

View File

@ -175,11 +175,7 @@ _generate_summary() {
# column: Align all the columns nicely - ref https://unix.stackexchange.com/a/468048/64687
export -f __analyse_package;
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')";
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')";
}
task_generate-summary() {