mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-14 06:52:36 +00:00
7 lines
191 B
Text
7 lines
191 B
Text
|
#!/bin/bash -e
|
||
|
|
||
|
RESULT=$(yafu 'factor(10)' | grep "^P" | tr -d '\n')
|
||
|
[ "$RESULT" == "P1 = 2P1 = 5" ] || exit 1
|
||
|
|
||
|
yafu 'factor(427836528347651349523452345)' | grep "^P" | grep -q 3290292219611
|