linux shell problem
I counld not run script properly.
If I run
#!/bin/shecho "Hello.World"
It's good.
But
#!/bin/shsudo su
apt-get update
apt-get upgrade
It failed.
What do I need extra ?
Thank you.
update:
回答:
由于不熟悉linux,
都是在windows下编辑文件在ssh 传过去
这里我用的编辑器 回车键 不是单纯的"0A"而是"0A0D"混入了"0D"导致linux 脚本识别错误。
回答:
#! /bin/shsudo apt-get update -y
sudo apt-get upgrade -y
以上是 linux shell problem 的全部内容, 来源链接: utcz.com/p/198239.html