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
Currently, the $LINENO that appears inside a command substitution expands to the line number in terms of the local script rather than the file containing the command substitution. Is this the expected behavior?
echo$LINENO# 1echo$(echo $LINENO)# should be 1 or 2?
The text was updated successfully, but these errors were encountered:
Currently, the
$LINENO
that appears inside a command substitution expands to the line number in terms of the local script rather than the file containing the command substitution. Is this the expected behavior?The text was updated successfully, but these errors were encountered: