cd /some/dir cpio -whatever<somefile cd -
(cd /some/dir && cpio -whatever < /some/file)
使用子shell括号将保留脚本当前工作目录并使用&&将确保仅在成功将目录更改为目标时才执行cpio提取.