Dear Maintainer, "ax x" is currently not able to read the input archive from stdin. Steps to reproduce: ar cr test.a $(mktemp test_XXXXX) cat test.a | ar xv /dev/stdin The following error is reported by the second command: ar: /dev/stdin: Illegal seek This error is caused by seeking the input by a negative offset (https://superuser.com/questions/1480715/input-pipe-for-ar). There should not be any technical necessity to do this, because using ar from busybox can use input from stdin. "ar p" is also affected. Best regards, Samuel Plavec