[Solved] Transform xlsx to CSV [closed]

It is no way to do it or at least not an easy one (like a simple script or command). Maybe by working on that xml files (Nahuel Fouilleul answer) but it will take too much time. jugging by reception alone of the question it looks like people donĀ“t want to touch this issue even … Read more

[Solved] how to extract word from ps -aux

Since it’s not clear what you’re trying to do: If you expect the following output: yypasswd then do ps -ef | grep yypasswd | awk ‘{print $8}’ if you want the following output: testacc 25124194 2512312620 0 08:00:53 pts/0 0:00 then do ps -ef | grep yypasswd | awk ‘{print $1, $2, $3, $4, $5, … Read more