diff options
author | Oskar <[email protected]> | 2024-04-20 13:11:26 +0200 |
---|---|---|
committer | Oskar <[email protected]> | 2024-04-20 13:11:26 +0200 |
commit | 90ab7c4cc4edaedb9180b7ec73570c0cc06fa0ab (patch) | |
tree | ba1934671af90eddf145d8ee6623a79f21f3754b /test/nl.sh | |
parent | e2c0feeb8b0b350d4c22f7786d08e28fff473bf0 (diff) |
new_line seems to work now
Diffstat (limited to 'test/nl.sh')
-rwxr-xr-x | test/nl.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/nl.sh b/test/nl.sh new file mode 100755 index 0000000..7080345 --- /dev/null +++ b/test/nl.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +filename="testgrounds/newlinetest" + +rm -f $filename + +for ((i=1; i<=10; i++)) +do + echo "$i" >> "$filename" +done + |