[go: up one dir, main page]

File: mission-time.sh

package info (click to toggle)
colobot 0.2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 415,516 kB
  • sloc: cpp: 129,242; ansic: 8,872; python: 2,158; sh: 672; awk: 91; xml: 35; makefile: 31
file content (9 lines) | stat: -rwxr-xr-x 326 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
#!/bin/bash
# Returns mission time on stdout for a mission given on the commandline
# Make sure the level actually uses MissionTimer, or the script will hang!

colobot -headless -runscene $@ 2>&1 | while read -r line; do
	if [[ $line =~ Mission[[:space:]]time:[[:space:]]([0-9:.]*) ]]; then
		echo ${BASH_REMATCH[1]}
	fi
done