Posts Tagged With: link

Find Link Status

Tagged with: , , , , , ,

Show link status of all interfaces


ip link show
No Comments »

Shortcuts - Hard and Soft Links in Linux

Tagged with: , , , , ,

This is how to create hard and soft links in Linux. Remember, a directory cannot be hard linked.


#Hard link
ln /path/to/file.ext .

#Soft link
ln -s /path/to/file.ext .

[tags]link, shortcut, soft,hard,linux,command[/tags]

No Comments »

Get URL Headers using CURL

Tagged with: , , , , ,

Show the headers of an URL using Curl


curl http://example.com -I
1 Comment »