Jupyterのコマンド実行
Jupyterでは、!をつける事で、Linuxのコマンドも実行可能になります。
コマンドの実行

たまに利用するコマンド
| コマンド | 意味 |
|---|---|
| !ls | ファイル一覧 |
| !ps -aux | 起動中のプロセス一覧 |
| !uname -a | LunuxのVersion |
| !cat /etc/debian_version | DebianのVersion |
| !python -V | PythonのVersion |
| !jupyter --version | JupyterのVersion |
| !ifconfig -a | ネットワークコンフィグ |
| !top | 起動中のプロセスのCPU占有率 |