mirror of
https://bitbucket.org/seefoe/dockerized-swg.git
synced 2026-01-16 23:04:17 -05:00
8 lines
199 B
Bash
8 lines
199 B
Bash
#!/bin/sh -f
|
|
|
|
while [ $# -gt 0 ]; do
|
|
cat ../src/engine/shared/library/sharedFoundation/src/shared/GameControllerMessage.def |grep CM_ |grep -v CM_nothing |nl |grep "^[^0-9]*$1[^0-9]"
|
|
shift 1
|
|
done
|
|
|