Skip to content

Instantly share code, notes, and snippets.

@KentaYamada
Created March 28, 2016 14:01
Show Gist options
  • Save KentaYamada/64a3baea52d15919ed17 to your computer and use it in GitHub Desktop.
Save KentaYamada/64a3baea52d15919ed17 to your computer and use it in GitHub Desktop.
パッケージインストール自動化スクリプト
#!/bin/bash
# インストールしたいパッケージを列挙
packages=("ibus-mozc" "sqlite3" "monodevelop")
for p in ${packages[@]}
do
#順番にインストール
sudo apt-get install $p
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment