ifconfigでIPアドレス、MAC アドレスだけを抜き出す
IPアドレス ifconfig | grep inet | grep -v 127.0.0.1 | cut -d: -f2 | awk '{ print $2}' MAC アドレスのみ if...
0
1
Comment0
3 search resultsShowing 1~3 results
IPアドレス ifconfig | grep inet | grep -v 127.0.0.1 | cut -d: -f2 | awk '{ print $2}' MAC アドレスのみ if...
PythonでJSONをPOSTする import requests json_data = {'data':'いちご'} requests.post(url='****************...
git init git add . git commit -m "First commit" git remote add origin [GithubのリポジトリURL] git push ...
3 search resultsShowing 1~3 results
Qiita is a knowledge sharing service for engineers.