Ubuntu:Shell Scripting: Difference between revisions
No edit summary |
|||
| (2 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
Allow permission | Allow permission<syntaxhighlight lang="bash"> | ||
chmod +x nama-script.sh | |||
</syntaxhighlight> | |||
==Update dan upgrade== | ==Update dan upgrade== | ||
Script | Script | ||
#! /bin/sh | #! /bin/sh | ||
sudo apt update | sudo apt update | ||
sudo apt upgrade | sudo apt upgrade | ||
| Line 13: | Line 14: | ||
==Install Audacity== | ==Install Audacity== | ||
Script | Script | ||
#! /bin/sh | #! /bin/sh | ||
| Line 21: | Line 23: | ||
Cara menjalankam | Cara menjalankam | ||
sh ./nama-script.sh | sh ./nama-script.sh | ||
[[Category:Ubuntu]] | |||
[[Category:Linux]] | |||
[[Category:Tutorial]] | |||