Skip to content
Snippets Groups Projects
Commit da370976 authored by ezsh's avatar ezsh
Browse files

Add script for converting [script] twee files to .js

The script is intended to help those who get merge conflicts due to
!3385.
parent 492f0182
No related branches found
No related tags found
1 merge request!3385Rename twee files with [script] passages to .js
#!/bin/sh
#converts files in the current dir
# collect files with [script] tag
FILES=`grep '\[script\]' -H -R * | cut -f 1 -d ':'`
for f in $FILES; do
# create new name. Old name can have any of the following suffixes:
# _JS.tw JS.tw .tw
nf="${f%_JS.tw}"
nf="${nf%JS.tw}"
nf="${nf%.tw}"
# we might end up with an empty name, then set dir name as the file name
[ -z "$(basename $nf)" -o "${nf: -1}" = "/" ] && nf="${nf}$(basename ${nf})"
# append the new suffix
nf="${nf}.js"
echo "renaming ${f} -> ${nf}"
# rename the file
git mv "${f}" "${nf}" || echo "renaming ${f} failed"
# strip Twee header from it
sed -i 1d "${nf}" || echo "stripping Twee header failed for ${nf}"
# strip leading empty line '/./,$!d'
sed -i '/./,$!d' "${nf}" || echo "Stripping leading empty blank lines failed for ${nf}"
done
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment