Is there a command within the bash shell of fedora that will give me the currently assigned IP address?
only if I am root
dacracot
2008-10-08 04:18:31
ifconfig works as a non-root user. It may not be in your path (/sbin/ifconfig), but you can still run it.
camh
2008-10-08 05:59:45
The output of `ip addr` may be easier to parse. Like `ifconfig`, it may not be in the default $PATH of a non-root user, but it will still work.
ephemient
2008-10-08 17:31:22