This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # first argument is the output file | |
| output=$1 | |
| # remove the output file if it already exists | |
| rm -f "$output" | |
| # create the output file | |
| touch "$output" |