This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Pokémon 3DS Title List | |
| ========================================================================== | |
| ALL REGIONS | |
| MAIN GAMES | |
| 0004000000055D00 Pokémon X [EKJA] | |
| 0004000000055E00 Pokémon Y [EK2A] | |
| 000400000011C400 Pokémon Omega Ruby [ECRA] | |
| 000400000011C500 Pokémon Alpha Sapphire [ECLA] | |
| 0004000000164800 Pokémon Sun [BNDA] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| SERIAL="00000000" | |
| echo "Looking for device with serial $SERIAL..." | |
| for d in /sys/bus/usb/devices/*-*; do | |
| if [[ -f "$d/serial" ]]; then | |
| serial=$(<"$d/serial") | |
| if [[ "$serial" = "$SERIAL" ]]; then | |
| device="$(basename $d)" |