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 we directly operate on this array.
so to get the 1st element of that array
echo ${$(`find /xyz/abc/music/ |grep def`)[0]} Please help me How I can achieve this