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 - Christoph GrĂ¼ninger (gruenich)

----------
Already done in dumux-lecture. The following script might help for dumux-stable 
and your files in dumux-devel.

========================
#!/bin/sh

# delete multiple blank lines
find . -name "*.input" -exec sed -i '/^$/N;/^\n$/D' {} \;
# delete lines containing only comments
find . -name "*.input" -exec sed -i '/^#/d' {} \;
# remove trailing whitespace
find . -name "*.input" -exec sed -i 's/[ \t]*$//' {} \;

----------

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

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
Dumux@listserv.uni-stuttgart.de
https://listserv.uni-stuttgart.de/mailman/listinfo/dumux

Reply via email to