JSON Format / JSON Pretty Print
把 JSON 漂亮工整地顯示出來## 如果系統有裝 python
# echo '{"name": "Jason", "age": "33"}' | python -mjson.tool
{
"age": "33",
"name": "Jason"
}
## 如果系統有裝 node
# node -e "console.log(JSON.stringify(JSON.parse(process.argv[1]), null, 4));" '{"name": "Jason", "age": "33"}'
{
"name": "Jason",
"age": "33"
}
列出有哪些 Process 在佔用 Port
sudo lsof -i | grep TCP
0 意見:
張貼留言