mirror of
https://github.com/Ysurac/openmptcprouter.git
synced 2025-02-15 04:42:02 +00:00
10 lines
No EOL
159 B
Bash
Executable file
10 lines
No EOL
159 B
Bash
Executable file
#!/bin/sh
|
|
|
|
while [[ $# -gt 0 ]]; do
|
|
case $1 in
|
|
-n|--name)
|
|
echo $(dd if=/dev/mtd13 bs=1 count=12 skip=16 2>/dev/null)
|
|
shift
|
|
;;
|
|
esac
|
|
done |