为什么我不能通过 shell 脚本更新我的系统?

为什么我不能通过 shell 脚本更新我的系统?

我有一个非常简单的脚本,我们称它为update.sh

#!/bin/bash

echo "Updating system..."
sudo apt-get udpate
sudo apt-get udgrade

运行此脚本,抛出以下错误:

me@host $ ./update.sh
Updating system...
E: Invalid operation udpate
E: Invalid operation udgrade

这是 Ubuntu Server 14.04 LTS x64。

me@host $ uname -a
Linux host 3.13.0-30-generic #54-Ubuntu SMP Mon Jun 9 22:45:01 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux

直接从 shell 运行命令即可达到预期效果:

me@host $ sudo apt-get update
Ign http://some.mirror.ubuntu.com trusty InRelease
Ign http://some.mirror.ubuntu.com trusty-updates InRelease
Hit http://some.mirror.ubuntu.com trusty Release.gpg
Hit http://some.mirror.ubuntu.com trusty-updates Release.gpg
Hit http://some.mirror.ubuntu.com trusty Release
[...]

这是为什么?有什么想法吗?

答案1

udpate都是udgrade错的!

尝试这个 :

#!/bin/bash

echo "Updating system..."
sudo apt-get update
sudo apt-get upgrade

相关内容