Usage
# Usage for curl
# Get your own ip address
curl ifcfg.cn
# Echo your request
curl ifcfg.cn/echo
# or with pretty json output(indented)
curl ifcfg.cn/echo | json_pp
# Usage for iwr in Windows PowerShell
# iwr is an alias of Invoke-WebRequest
# Get your own ip address
$resp = iwr ifcfg.cn
$resp.Content
# Echo your request
$resp = iwr ifcfg.cn/echo
$resp.Content
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。