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
this will work
array_name=(`find directorypath | grep "string" | awk -F "\n" '{print $1}'`) echo $array_name