Saturday, March 18, 2023

AWS Common commands

 

Without ifconfig command

public IP

$ curl ifconfig.me

private IP

$ ip addr 

References:

[1] https://opensource.com/article/18/5/how-find-ip-address-linux

No comments:

Javascript DEBUG functions

    Object . entries ( obj ) const obj = { foo : "bar" , baz : 42 } ; console . log ( Object . entries ( obj ) ) ; // [ [...