You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If font postscript name contains spaces the script interprets it as a second font due to default behavior of for loop is split on spaces, tab and newline , so you should only split on new lines.
If font postscript name contains spaces the script interprets it as a second font due to default behavior of for loop is split on spaces, tab and newline , so you should only split on new lines.
IFS=$'\n'should fix that