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
In line 61 of sn_orchestrator.py, the following command is presented:
".40 | head -n 1 | awk -F: '{ print $2 }' | tr -d [:blank:]") as f:
It is essential to note that the command tr -d [:blank:] failed to execute in my environment, which uses Ubuntu 20.04 with zsh as the default shell. Instead, I suggest using tr -d '[:blank:]' given its broader compatibility.
Note that this expression appears in many other locations.
The text was updated successfully, but these errors were encountered:
In line 61 of sn_orchestrator.py, the following command is presented:
".40 | head -n 1 | awk -F: '{ print $2 }' | tr -d [:blank:]") as f:
It is essential to note that the command tr -d [:blank:] failed to execute in my environment, which uses Ubuntu 20.04 with zsh as the default shell. Instead, I suggest using tr -d '[:blank:]' given its broader compatibility.
Note that this expression appears in many other locations.
Thank you for your suggestion. We will change it for later versions.
In line 61 of
sn_orchestrator.py
, the following command is presented:It is essential to note that the command
tr -d [:blank:]
failed to execute in my environment, which uses Ubuntu 20.04 with zsh as the default shell. Instead, I suggest usingtr -d '[:blank:]'
given its broader compatibility.Note that this expression appears in many other locations.
The text was updated successfully, but these errors were encountered: