mirror of
https://github.com/rxrbln/t2sde.git
synced 2025-05-08 20:21:59 +08:00
8 lines
168 B
Batchfile
8 lines
168 B
Batchfile
#!/bin/sh
|
|
|
|
[ "$QEMU" ] || exit 43
|
|
|
|
[ -e $SYSROOT/bin/sort ] || exit 42
|
|
|
|
printf 'car,(20)\njeep,[10]\ntruck,(5)\nbus,[3]' | $QEMU -chroot $SYSROOT bin/sort -t, -k2.2,2n
|