Skip to main content
replaced http://stackoverflow.com/ with https://stackoverflow.com/
Source Link

You can issue both commands and have them run concurrently in one line like:

(dhclient &); (dhclient -6 &)

You could then add it to a BASH script or alike, named how you'd like. :)

More info on combining commands in Linux:

You can issue both commands and have them run concurrently in one line like:

(dhclient &); (dhclient -6 &)

You could then add it to a BASH script or alike, named how you'd like. :)

More info on combining commands in Linux:

You can issue both commands and have them run concurrently in one line like:

(dhclient &); (dhclient -6 &)

You could then add it to a BASH script or alike, named how you'd like. :)

More info on combining commands in Linux:

Source Link
Ƭᴇcʜιᴇ007
  • 113.2k
  • 19
  • 203
  • 270

You can issue both commands and have them run concurrently in one line like:

(dhclient &); (dhclient -6 &)

You could then add it to a BASH script or alike, named how you'd like. :)

More info on combining commands in Linux: