示例:
#!/bin/bash
sudo add-apt-repository
echo -n "Enter ppa here > "
read $response
sudo apt-get update
if [ "W: GPG error: * NO_PUBKEY" = "0" ]; then
echo "Enter the 16 digit key provided at the end of this error."
sudo apt-add adv --keyserver keyserver.ubuntu.com --recv-key
echo -n "Enter key here > "
read text
else
echo "Update succeeded with no errors."
fi
sudo apt-get update
但是脚本停止了,因为存储库之后没有args。如何提示用户输入回购?
答案 0 :(得分:0)
错误:需要存储库作为参数 在这里输入ppa! > 我输入了一个ppa,但它继续更新而不添加ppa。