This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TAKEHOMEDIR='/path/to/zipped/assignments' | |
cd $TAKEHOMEDIR | |
unzip \*.zip | |
for item in ${TAKEHOMEDIR}/*; do | |
if [[ -d $item ]]; then | |
atom $item | |
fi | |
done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'json' | |
require 'net/http' | |
require 'uri' | |
results = [] | |
deps = %w(insert dependencies here) | |
deps.each do |dep| | |
begin | |
puts "working on #{dep} " |