how to get elements from list in bash?

SpawnST

Here is a LIST:

List = "abcd 1234 jvm something"

How to get the second element "1234" without looping all the list?

user31894

no spaces between equal sign

$ List="abcd 1234 jvm something"
$ set -- $List
$ echo $2
1234

Some other ways, although not as efficient as using shell's internals

$ echo $List | cut -d" " -f2
1234
$  echo $List | awk '{print $2}'
1234
$ echo $List | sed 's/^.[^ \t]* //;s/ .*//'
1234
$ echo $List | tr " " "\n"|sed -n '2p'
1234

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to get elements from list in structure by pointer

From Dev

How to get Distinct elements from a List of List in c#

From Dev

Get elements from list in python

From Dev

How to get elements from a list, by groups of 10? (or 5, or 3, etc)

From Dev

How do you get elements from list of tuples in SML?

From Dev

How to get only a particular type of elements from a list in Haskell?

From Dev

how to get a specific output from different elements of a list?

From Dev

How to get the elements from a generic List<T> in C#?

From Dev

How to get the position of elements in a list?

From Dev

How to remove elements from a list?

From Dev

how to get python list from other list which has dict as elements

From Dev

How to Get Paragraph List's all run elements as a List from OpenXml

From Dev

Get first n elements from List

From Dev

Get the value for each control from a list of elements?

From Dev

Get a list of TIDs from a PID in Bash

From Dev

How to get netmask from bash?

From Dev

How to get all elements of a list by instance?

From Dev

How to get list of child elements of an element in Appium?

From Dev

PostgreSQL - How to get the count of elements in a column list

From Java

How do I get the number of elements in a list?

From Dev

Jquery - How to get elements in a list item

From Dev

How to get list of registered custom elements

From Dev

How to get the next tree elements of a list

From Dev

How to get list elements by index in elixir

From Dev

How to get and set elements in nested list

From Dev

How to get only specific elements of list in racket

From Dev

How to get list of elements by partial class name?

From Dev

How to get Series list elements vertically in pandas

From Dev

Marklogic- How get a list of elements in a document

Related Related

  1. 1

    How to get elements from list in structure by pointer

  2. 2

    How to get Distinct elements from a List of List in c#

  3. 3

    Get elements from list in python

  4. 4

    How to get elements from a list, by groups of 10? (or 5, or 3, etc)

  5. 5

    How do you get elements from list of tuples in SML?

  6. 6

    How to get only a particular type of elements from a list in Haskell?

  7. 7

    how to get a specific output from different elements of a list?

  8. 8

    How to get the elements from a generic List<T> in C#?

  9. 9

    How to get the position of elements in a list?

  10. 10

    How to remove elements from a list?

  11. 11

    how to get python list from other list which has dict as elements

  12. 12

    How to Get Paragraph List's all run elements as a List from OpenXml

  13. 13

    Get first n elements from List

  14. 14

    Get the value for each control from a list of elements?

  15. 15

    Get a list of TIDs from a PID in Bash

  16. 16

    How to get netmask from bash?

  17. 17

    How to get all elements of a list by instance?

  18. 18

    How to get list of child elements of an element in Appium?

  19. 19

    PostgreSQL - How to get the count of elements in a column list

  20. 20

    How do I get the number of elements in a list?

  21. 21

    Jquery - How to get elements in a list item

  22. 22

    How to get list of registered custom elements

  23. 23

    How to get the next tree elements of a list

  24. 24

    How to get list elements by index in elixir

  25. 25

    How to get and set elements in nested list

  26. 26

    How to get only specific elements of list in racket

  27. 27

    How to get list of elements by partial class name?

  28. 28

    How to get Series list elements vertically in pandas

  29. 29

    Marklogic- How get a list of elements in a document

HotTag

Archive