THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.

The following task has a new comment added:

FS#247 - Input file cleanup
User who did this - Johannes Hommel (Joh_Ho)

----------
Done in dumux (revision 14049), mainly using the script below and some 
corrections by hand in case of meaningful comments:

# delete lines containing only comments
find . -name "*.input" -exec sed -i '/^#/d' {} \;
# remove trailing whitespace
find . -name "*.input" -exec sed -i 's/[ \t]*$//' {} \;
# delete multiple blank lines
find . -name "*.input" -exec sed -i '/^$/N;/^\n$/D' {} \;
# delete blank line(s) at the start of the file
find . -name "*.input" -exec sed -i '/./,$!d' {} \;

However, there remains the issue with missing units in some inputfiles.
----------

More information can be found at the following URL:
http://www.dumux.org/flyspray/index.php?do=details&task_id=247#comment538

You are receiving this message because you have requested it from the Flyspray 
bugtracking system.  If you did not expect this message or don't want to 
receive mails in future, you can change your notification settings at the URL 
shown above.
_______________________________________________
Dumux mailing list
[email protected]
https://listserv.uni-stuttgart.de/mailman/listinfo/dumux

Reply via email to