fork(4) download
  1. #!/bin/bash
  2. # your code goes here
  3.  
  4. declare -A FILES=(['SOURCE']='Source/Core/Core.js' ['DIST']='dist/Core.js')
  5.  
  6. for file in "${!FILES[@]}"; do
  7. echo $file - $FILES[$file]
  8. done
Success #stdin #stdout 0.03s 5268KB
stdin
Standard input is empty
stdout
SOURCE - [SOURCE]
DIST - [DIST]