You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
346 B
26 lines
346 B
#!/bin/sh |
|
# |
|
fldsep="`echo -e '\x02'`" |
|
# |
|
dsp() |
|
{ |
|
cut -c4- |
|
# echo |
|
} |
|
process() |
|
{ |
|
# <256 |
|
len=${#1} |
|
oct="`printf '%03o' "$len"`" |
|
code="`printf "\\\\$oct"`" |
|
all="$code$zero$zero$zero$1" |
|
printf "$code\\0\\0\\000$1" | nc -U -w 1 /opt/ckdb/listener | dsp |
|
} |
|
# |
|
addid() |
|
{ |
|
msg="1.newid.idname=$1${fldsep}idvalue=$2" |
|
process "$msg" |
|
} |
|
# |
|
addid userid 7
|
|
|