diff options
| author | Inqiyad Sabr <sabr@ariamath.xyz> | 2025-11-13 00:05:21 +0600 |
|---|---|---|
| committer | Inqiyad Sabr <sabr@ariamath.xyz> | 2025-11-13 00:05:21 +0600 |
| commit | b310fce41b551a12eb59e7348878f6069b8351f1 (patch) | |
| tree | faa340a709d95f7b4e2a8cc3be368f7e32eb51c1 /c2x | |
| parent | 46eaf7d134d8c2fd241cb714c7a2af9ed7159084 (diff) | |
Optimised for better header checks
And removed the rsync flag for updating
Diffstat (limited to 'c2x')
| -rwxr-xr-x | c2x | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,5 +1,5 @@ #!/bin/sh -rsync -avz ./"${1}" ./"${1}_xhtml" +rsync ./"${1}" ./"${1}_xhtml" cd ./"${1}_xhtml" || exit for file in $(find ./* | grep ".gmi" | sed 's/.gmi//'); do g2x < "./${file}.gmi" > "./${file}.html" |