Ubuntu:Shell Scripting: Difference between revisions
Created page with "Allow permission chmod +x nama-script.sh ==Update dan upgrade== #! /bin/sh sudo apt update sudo apt upgrade ==Install Audacity== #! /bin/sh ## use PPA Repository sudo add-apt-repository ppa:ubuntuhandbook1/audacity sudo apt update sudo apt install audacity" |
No edit summary |
||
| (4 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== | ||
#! /bin/sh | Script | ||
sudo apt update | #! /bin/sh | ||
sudo apt update | |||
sudo apt upgrade | sudo apt upgrade | ||
Cara menjalankam | |||
sh ./nama-script.sh | |||
==Install Audacity== | ==Install Audacity== | ||
Script | |||
#! /bin/sh | #! /bin/sh | ||
| Line 14: | Line 21: | ||
sudo apt update | sudo apt update | ||
sudo apt install audacity | sudo apt install audacity | ||
Cara menjalankam | |||
sh ./nama-script.sh | |||
[[Category:Ubuntu]] | |||
[[Category:Linux]] | |||
[[Category:Tutorial]] | |||