Hello guys I'm using the find command to find the .apk files in a directory. But the output of the find command is **./**foo.apk.
I don't want to have this ./.
cd output/dist
output_apk=`find ./ -name "*.apk" -print0`
echo "$output_apk"
The output is ./foo.apk. I have try the sed command with no luck.