简体   繁体   中英

How to take out the numerical values from a list of numbers and words in linux

I'm a newbie in Linux. I was trying to make a nested if loop inside a for loop and found difficulties taking out the numeric values from a list. My code is

 #!/bin/bash
t=`ls ListOfthings`
for i in $t
do
  if "$i" -eq "$i"
 then
    echo hi (for example)
fi
done

when I execute this, it said syntax error unexpected token 'done'. I think its some problems related to the "$i" -eq "$i" ? Is this the right way to identify the numerical items?

For example, from a list [123 23 63 a.txt b.txt c.sh] , 123 , 23 and 63 are needed.

Try using regex. For example: egrep '^[0-9]+$' list

Or if you're using ls: ls | egrep '^[0-9]+$' ls | egrep '^[0-9]+$'

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM