Re: parsing /proc/cmdline

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]



On Fri, Mar 7, 2008 at 10:35 AM, Jerry Geis <geisj@xxxxxxxxxxxxxxx> wrote:
>  If /proc/cmdline looks like
>
>  option1 option2 ... ks=http://192.168.1.8/ks/ks.cfg option3 option 4 ...
>
>  How can I get the 192.168.1.8 out of this cmdline.

Cryptic but does the job:

$ cat /tmp/cmdline
option1 option2 ... ks=http://192.168.1.8/ks/ks.cfg option3 option 4 ...
$ perl -lane 'm#^ks=.*//((\d+\.){3}\d+)/#&&print($1)&&exit for@F' /tmp/cmdline
192.168.1.8
$

Obviously, you should use /proc/cmdline instead of the file in /tmp as I used.
Filipe
_______________________________________________
CentOS mailing list
CentOS@xxxxxxxxxx
http://lists.centos.org/mailman/listinfo/centos

[Index of Archives]     [CentOS]     [CentOS Announce]     [CentOS Development]     [CentOS ARM Devel]     [CentOS Docs]     [CentOS Virtualization]     [Carrier Grade Linux]     [Linux Media]     [Asterisk]     [DCCP]     [Netdev]     [Xorg]     [Linux USB]
  Powered by Linux