Skip to content

Bash Code Snippets

  • 拿 csv 的第 1 個 col
bash
cut -d',' -f1
  • 拔掉 stdout 第一行
bash
sed 1d
  • multiprocess
bash
python3 main.py &
proc1_id=$!
python3 main.py &
proc2_id=$!

trap_ctrlc() {
    kill $proc1_id
    kill $proc2_id
    wait $proc1_id
    wait $proc2_id
}

trap trap_ctrlc INT
wait

Changelog

Just observe 👀