-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Custom delimiter for CSV / SSV outputs #4461
Comments
Hey @pedrooot Is this issue still open? If so, can I work on it? |
Sounds good |
Hey @pedrooot Am I okay to start on this issue? |
Hello @abant07 we are not sure about what to do here. If we decide that we want to add it we'll let you know. Thanks! |
Sounds good |
For anyone that finds this, a temporary solution I'm using is to replace commas (due to their presence in control descriptions/results/etc) with a space and then replace semicolons with commas:
|
I think we can take advantage of v5 soon to have this sorted out. Leave default as it is (to not break anything) and add custom delimiter support option. Usage of |
Yep, that's why I'm removing commas before replacing semicolons. As noted, a temporary workaround I've been using with no issue until Prowler supports the comma delimiter. |
New feature motivation
Currently Prowler generates the CSV outputs using
;
as delimiter. The CSV RFC specifies that the delimiter should be,
. The goal is to make a customizable delimiter for this output.Solution Proposed
Have a custom separator for the CSV output or create a new output type called
SSV
which has;
as native separator and use,
on theCSV
output.Describe alternatives you've considered
If you have any trouble when opening a CSV file output from Prowler in LibreOffice or Excel we recommend you to follow these steps:
The text was updated successfully, but these errors were encountered: