mirror of
https://github.com/rxrbln/t2sde.git
synced 2025-05-08 20:21:59 +08:00
12 lines
154 B
Batchfile
12 lines
154 B
Batchfile
#!/bin/sh
|
|
|
|
[ "$QEMU" ] || exit 43
|
|
|
|
[ -e $SYSROOT/bin/sh ] || exit 42
|
|
|
|
echo "1
|
|
2
|
|
3
|
|
4" |
|
|
$QEMU -chroot $SYSROOT bin/awk '{ sum += $1 }; END { print sum }'
|