Amazon Ad

Featured Post

Friday, December 01, 2023

Sort CSV Numerically

To avoid this error:

sort: Illegal byte sequence


Add the LC_All=C:

 LC_ALL=C sort -t',' -k1,1V allitems.csv

Saturday, March 25, 2023

Kubernetes - Manage Cron Jobs

 To view cronjobs:

kubectl -n <namespace> get cj


To manually run a cronjob:

kubectl -n poc create job --from=cronjob/job_family job1