I have a bunch a files that contain many blank lines, and want to remove any repeated blank lines to make reading the files easier. I wrote the following script:
<
The unpredictability happens because there's a race condition between two stages in the pipeline, cat "$file" and cat -s > "$file".
The first tries to open the file and read from it, while the other tries to empty the file.
If you have GNU sed, you can simply do sed -i 'expression' *