Skip to content

Instantly share code, notes, and snippets.

@ecylmz
Created October 6, 2012 11:23
Show Gist options
  • Save ecylmz/3844665 to your computer and use it in GitHub Desktop.
Save ecylmz/3844665 to your computer and use it in GitHub Desktop.
Lab/19 Paket Kurulumları
#!/bin/bash
for gem in `cat gemler.txt`; do
gemler="$gemler $gem"
done
gem install $gemler
for paket in `cat paketler.txt`; do
paketler="$paketlerler $paket"
done
gem install $paketler
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment