diff options
| author | omagdy7 <omar.professional8777@gmail.com> | 2022-10-27 23:22:07 +0200 |
|---|---|---|
| committer | omagdy7 <omar.professional8777@gmail.com> | 2022-10-27 23:22:07 +0200 |
| commit | 623557259e6906dbd33a5ebf26c4ff6c4ad7eec8 (patch) | |
| tree | b8a67528fb11a54d26195352cfa62bc81b5388e5 /presets/addtworows.sh | |
| parent | cbc269c1ca61ef8abc63a9cc4ba3c3344e3731e6 (diff) | |
| download | gof-rs-623557259e6906dbd33a5ebf26c4ff6c4ad7eec8.tar.xz gof-rs-623557259e6906dbd33a5ebf26c4ff6c4ad7eec8.zip | |
Made the screen fullscreen while animating and removed uncessary imports
Diffstat (limited to 'presets/addtworows.sh')
| -rwxr-xr-x | presets/addtworows.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/presets/addtworows.sh b/presets/addtworows.sh new file mode 100755 index 0000000..1e97395 --- /dev/null +++ b/presets/addtworows.sh @@ -0,0 +1,10 @@ +#!/bin/sh + +rows="........................................................................\n........................................................................\n" + +for file in $(ls) +do + [[ "$(echo "$file" | cut -d'.' -f2)" == "txt" ]] && echo -e "$rows$(cat $file)" > $file +done + + |
