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
I just got to the part when it installs the sed package. I think in most cases awk would be a better fit, but if we are going to be installing a tool for this task it's gotta be busybox. Example: tunnelInterfaceIP="$(ip -br addr show dev "$tunnelInterface"|busybox awk -F'[ /]+' '{print$3}')"
Also busybox sed... so both needs are covered. In that case we should also target the busybox sh, meaning no more arrays I'd guess.
The text was updated successfully, but these errors were encountered:
I just got to the part when it installs the
sed
package. I think in most cases awk would be a better fit, but if we are going to be installing a tool for this task it's gotta be busybox. Example:tunnelInterfaceIP="$(ip -br addr show dev "$tunnelInterface"|busybox awk -F'[ /]+' '{print$3}')"
Also
busybox sed...
so both needs are covered. In that case we should also target the busyboxsh
, meaning no more arrays I'd guess.The text was updated successfully, but these errors were encountered: