Skip to content

Commit

Permalink
Add sandbox script for eecs280
Browse files Browse the repository at this point in the history
  • Loading branch information
awdeorio committed Apr 13, 2023
1 parent be33b09 commit e7ca48f
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions bin/eecs280-sandbox
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/bin/bash
set -Eeuo pipefail

set -x
mkdir -p sandbox
cd sandbox
{ set +x; } 2>/dev/null

for F in $(find ../starter-files ../solution -type f); do
set -x
ln -sf $F
{ set +x; } 2>/dev/null
done

0 comments on commit e7ca48f

Please sign in to comment.