1
0
mirror of git://projects.qi-hardware.com/ben-wpan.git synced 2025-04-21 12:27:27 +03:00

usrp/plscan: truncate title at the last dot, not the first

- usrp/plscan: change ${n%%.*} to ${n%.*}
- usrp/README: updated description
This commit is contained in:
Werner Almesberger
2010-11-17 14:11:50 -03:00
parent 66f6ad6f7c
commit 59beaba426
2 changed files with 2 additions and 2 deletions

View File

@@ -24,7 +24,7 @@ set title "Received signal strength"
set data style errorlines
plot \
`for n in $@; do
echo -n $comma \'$n\' title \'${n%%.*}\'
echo -n $comma \'$n\' title \'${n%.*}\'
comma=,
done`
EOF