dbyum.sh - centos系統下不需要root權限即可實現yum一鍵安裝軟件的bash腳本
#!/bin/bash #dbyum.sh # 在沒有root權限時,使用yum search和yumdownloader 安裝軟件到指定路徑下 E_BADARGS=65 if [ $# -eq 1 ] then rpm_name=$1 install_path=${HOME}/yum_custom elif [ $# -eq 2 ] ; then rpm_name=$1 i
昵稱 apollo008