I am looking for something that will find the squashed filesystem, and the pass the output to unsquash the fs and it would have to be an absolute path outside the squashfs.
example
/tmp/mnt/live/filesystem.squashfs
desired output
/tmp/unsquashedfs/files
I am fooling with lines of code like
find /tmp/mnt -iname '*.squashfs' -exec unsqaushfs '*.squashfs' {} \;
find /tmp/mnt -print0 -iname "*.squashfs" | unsquashfs "*.squashfs" -T -
But can't get it to work. Any help from somebody would be appreciated!