diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2018-04-08 01:08:53 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2018-04-08 01:08:53 +0100 |
commit | f730fe0a876965ec656232ef838d7077bf00d89a (patch) | |
tree | c9d7dac02f916e5ddc99e0413e560b91822c7d48 /src/helpers/make_local_csv | |
parent | ef5b17b998c70aba6bc10f847cfeeda615325355 (diff) |
hook timestamps, run even faster
Diffstat (limited to 'src/helpers/make_local_csv')
-rwxr-xr-x | src/helpers/make_local_csv | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/helpers/make_local_csv b/src/helpers/make_local_csv new file mode 100755 index 0000000..91e00bb --- /dev/null +++ b/src/helpers/make_local_csv @@ -0,0 +1,8 @@ +#!/usr/bin/env bash + +makecsv() { + qlist -ICScv|sed -e "s/\//\,/" -e "s/[\t ]/\,/" -e "s/\:/\,/" >> /tmp/localPackagesPre.csv + mv /tmp/localPackagesPre.csv /var/lib/sisyphus/csv/ +} + +makecsv |