Maybe try:
xip -x [path to .xip file]
That will unpack the archive into your current working directory.
As for extracting into a specific directory, there is not explicitly an option for this, but xip -x
will extract into the current working directory. Therefore, cd
ing to where you would like to extract the file should work; if you specifically need to automate this, a script to the effect of:
#!/bin/sh
xipfile="$(cd $(dirname "$1"); pwd -P)/$(basename "$1")" # a portable "realpath"
cd "$2"
xip -x "$xipfile"
Should do the trick I think?
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…