Bash Script
-
Dears,
i wrote a bash script on my mail server to get all mailboxes consumed quota and remaining quota but i want to make the output in a table form.
any idea for doing that?thanks
-
Is it outputting the information for each mailbox on a new line already? If it's already doing that, making a csv you can import into any spreadsheet/database is really easy. Just add a comma in the output between each field.
-
Maybe try assigning the output to a variable/series of variables that can be used in a separate function? Or try piping the output of your current script into another script that processes it and builds an HTML based table?