Guys How can I make this work
`find /xyz/abc/music/ |grep def`
I don\'t want to store the array in any temporary variable. How can w
Put the call to find in array brackets
X=( $(find /xyz/abc/music/ | grep def) ) echo ${X[1]} echo ${X[2]} echo ${X[3]} echo ${X[4]}