tmpfs.tech · all tracks · Bash & Scripting

Tally with an Associative Array

Bash & Scripting · pro · solved in-browser (no VM needed) · 3 tiered hints

Write /home/player/tally.sh (shebang #!/bin/bash) that counts occurrences of words read from stdin using an associative array. Declare it with `declare -A`, increment a keyed counter with (( arr[key]++ )), and finally iterate the keys with ${!arr[@]} to print each word and its count. (Authored config, graded structurally — the engine isn't run here.)

▶ Start this challenge

Nobody has solved this one yet — be the first clear on the leaderboard.

How it works

Open the challenge and an in-page editor appears — write your answer and tmpfs.tech grades it server-side against the same checks a real box would run. No VM, no install, no signup needed to try.

More Bash & Scripting challenges

Write robust shell: loops, parsing, exit codes and small automation.

See all Bash & Scripting challenges →

FAQ

Is it free? Yes — play as a guest, no signup required to start.

Do I need to install anything? No. Everything runs in your browser.

How is it graded? Automatically and deterministically — your work is checked against the exact rules the live box would apply.