Open3

(メモ)シェルスクリプトで自動化して遊ぶ

しちみしちみ

シェルスクリプトで色々自動化する
ちょっとグレー

sh.sh
#!/bin/sh
mkdir giga
cd giga
python3 -m venv venv
. venv/bin/activate
pip install requests
curl -O https://x0.at/xxxx.py
python3 xxxx.py

# curl https://getmic.ro | bash
# touch 1.py
# ./micro 1.py

しちみしちみ

コマンドはこれ一行
セミコロンで繋ぐと連続実行できる

curl -O https://x0.at/sh.sh ; chmod 777 sh.sh ; ./sh.sh