File: summarize-range

package info (click to toggle)
freecell-solver 3.12.0-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 4,332 kB
  • sloc: ansic: 29,493; perl: 8,911; xml: 5,162; python: 1,124; sh: 777; ruby: 358; cpp: 304; makefile: 150
file content (7 lines) | stat: -rw-r--r-- 308 bytes parent folder | download
1
2
3
4
5
6
7
#!/bin/bash
for I in `seq 1 8` ; do
    printf "%-6s| %-25s | %-30s\n" \
        "$I" \
        "$(./board_gen/pi-make-microsoft-freecell-board -t "$I" | ./scripts/summarize-fc-solve)" \
        "$(./board_gen/pi-make-microsoft-freecell-board -t "$I" | ./scripts/summarize-fc-solve -- --method a-star)"
done