bash メモ

- bash

cat <<EOF > /etc/wsl.conf
[boot]
command = service docker start;
EOF

bash の変数展開 (数式)

i=1234
echo $((i*2))

参考