We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi !
It seems there is an undesired behavior with the line
tail -c +4 "lang/versions_${i}.txt" | head -c -1 | tr ',' '_' | tr '|' '\n' | while read -r file; do`
head -c -1
|
removing this chunk and I get a full lang/swf/ directory of every item listed in the versions_${i}.txt
I would suggest this kind of fix: tail -c +4 "lang/versions_${i}.txt" | tr ',' '_' | tr '|' '\n' | while read -r file; do
tail -c +4 "lang/versions_${i}.txt" | tr ',' '_' | tr '|' '\n' | while read -r file; do
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi !
It seems there is an undesired behavior with the line
head -c -1
remove the last character which is|
but by doing so the last item is not processed by the while loopremoving this chunk and I get a full lang/swf/ directory of every item listed in the versions_${i}.txt
I would suggest this kind of fix:
tail -c +4 "lang/versions_${i}.txt" | tr ',' '_' | tr '|' '\n' | while read -r file; do
The text was updated successfully, but these errors were encountered: