de-rpm.sh

来自「Shall高级编程」· Shell 代码 · 共 22 行

SH
22
字号
#!/bin/bash# de-rpm.sh: Unpack an 'rpm' archive: ${1?"Usage: `basename $0` target-file"}# Must specify 'rpm' archive name as an argument.TEMPFILE=$$.cpio                         #  Tempfile with "unique" name.                                         #  $$ is process ID of script.rpm2cpio < $1 > $TEMPFILE                #  Converts rpm archive into                                         #+ cpio archive.cpio --make-directories -F $TEMPFILE -i  #  Unpacks cpio archive.rm -f $TEMPFILE                          #  Deletes cpio archive.exit 0#  Exercise:#  Add check for whether 1) "target-file" exists and#+                       2) it is an rpm archive.#  Hint:                    Parse output of 'file' command.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?