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
command <<<
my_commad
if [ ! -f "labels.txt" ]
then touch labels.txt # Labels.txt will be empty.
fi
>>>
output
Array[String] labels = read_lines("labels.txt")
Alternatively if the existance of the file is dependent on the inputs you could use those rather than checking for the existence of the file.
I want to do something like this:
but am currently writing an ugly workaround to achieve the same logic.
The text was updated successfully, but these errors were encountered: