Skip to content
Archive of posts filed under the Tips, Tricks… category.

What is my public IP-address?

What is my public IP-address? Short command, easy to remember dig +short @208.67.222.222 myip.opendns.com 

Sử dụng curl để cập nhật status twitter trong linux

Update twitter via curl curl -u user -d status=”I am from MrHien.Info” http://twitter.com/statuses/update.xml

Recursive Chmod Tricks

Chỉ chmod  thư mục : find . -type d -exec chmod 755 {} \; Chỉ chmod tập tin : find . -type f -exec chmod 644 {} \; Chỉ chmod tập tin có phần mở rộng là .php: find . -type f -name ‘*.php’ -exec chmod 600 {} \;