相当于 Linux 中 Windows 批量回显关闭

相当于 Linux 中 Windows 批量回显关闭

我需要隐藏 .sh 脚本的内容并仅显示 echo“messajes”。相当于 Windows 批处理:@回声关闭

例子:

echo "Download..."
wget http://mypage.com/files/file.zip
echo "Ending..."
sed -e '/^#/d' file2.tar.gz | sed 's/^/./' | sort -u > out
echo "Done"

我需要在控制台中得到这个结果:

Download..
Ending..
Done

答案1

使用这个命令...

wget -安静的文件.zip

相关内容