1DOLLY 32MODULE startup-default34REQUIRES TOOL slop5REQUIRES TOOL foreground6REQUIRES TOOL test7REQUIRES TOOL printf89FILE /etc/dolly/init.slop10 if test -f "$HOME/.dollyrc"; then11 /bin/foreground /bin/slop -e "$HOME/.dollyrc"12 status=$?13 case "$status" in14 0|130) ;;15 *) printf 'Dolly: %s exited with status %s; continuing.\n' "$HOME/.dollyrc" "$status" >&2 ;;16 esac17 fi18 /bin/foreground -i /bin/slop19 printf '\nDolly: image entry exited; entering the recovery Slop shell.\n'20 /bin/foreground -i /bin/slop2122FILE /home/dolly/.dollyrc23 printf '\033[33mDOLLY / DEFAULT\033[0m\n'24 printf 'Browser-contained wasm64 userspace; files and processes stay inside Dolly.\n'25 printf 'Try: help | ls /bin | git --version | cc --version\n\n'26