Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've got something like that:

xinput --list
⎡ Virtual core pointer                      id=2    [master pointer  (3)]
⎜   ↳ Virtual core XTEST pointer                id=4    [slave  pointer  (2)]
⎜   ↳ Microsoft Basic Optical Mouse             id=8    [slave  pointer  (2)]
⎣ Virtual core keyboard                     id=3    [master keyboard (2)]
    ↳ Virtual core XTEST keyboard               id=5    [slave  keyboard (3)]
    ↳ Power Button                              id=6    [slave  keyboard (3)]
    ↳ Power Button                              id=7    [slave  keyboard (3)]
    ↳ CHICONY HP Basic USB Keyboard             id=9    [slave  keyboard (3)]

And I want to get the id number. I've try something like awk -F 'id=' '[print $2} but text after the id number is still here! How i can only get the id number!

Thanks in advance.

share|improve this question

7 Answers

This may not be the shortest, but should be easy to understand for anyone with a little bit of awk knowledge:

awk '{ for (i = 1; i <= NF; i++) if ($i ~ /id=/) { print substr($i, 4); break; } }'
share|improve this answer
may I suggest: {print substr($i,4); break} in place of your print statement – glenn jackman Aug 9 '10 at 16:33
@glenn jackman Thanks, I added it. – schot Aug 10 '10 at 7:22

Try:

xinput --list | grep -Eo 'id=[0-9]+' | grep -Eo '[0-9]+'

or

xinput --list | grep -Eo 'id=[0-9]+' | awk -F= '{print $2}'
share|improve this answer
nice solution. requires GNU grep for -o – glenn jackman Aug 9 '10 at 16:31

one way

xinput --list | awk -F"id=" 'NF{split($2,a," ");print a[1]}' file

with the shell(bash)

#!/bin/bash
xinput --list | while read -r line
do
  case "$line" in
   *id=* )
     line=${line##*id=}
     echo ${line%% *}
  esac
done
share|improve this answer

try something like this:

xinput --list | while read line; do
    ID=`echo ${line} | cut -d= -f2 | cut -d\[ -f1 | xargs`
    echo ${ID}
done
share|improve this answer
thanks it work fine! – turlutte Aug 9 '10 at 14:37
you're welcome :) – ozk Aug 9 '10 at 14:51

Bash only:

while read line ; do
    if [[ $line =~ id=([[:digit:]]) ]] ; then
        echo "${BASH_REMATCH[1]}"
    fi
done < <( xinput --list )
share|improve this answer

I find these things simplest with sed, using substitution of a group to capture the data you want and ensuring the rest of the line is matched in the regex.

sed 's/.*id=\([0-9]*\).*/\1/'
share|improve this answer
that will include lines that don't have an id=, use -n to suppress initial output, and add a p at the end of the replacement to display only the replacement string... or does xinput --list only display lines with an id output? – Petesh Aug 10 '10 at 14:40
I was basing it on the sample text provided by the poster, but you are correct regarding -n /p - another sed pattern I frequently use. – camh Aug 11 '10 at 0:43

Try:

cat x | awk -Fid= '{print $2}' | awk  '{print $1}'
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.