LoginSignup
0
1

More than 5 years have passed since last update.

Ubuntuを手抜きでUPDATEしたいけどファイル作るのも面倒な人(自分含む)用。

Last updated at Posted at 2017-01-23

1.コピペしてTerminalに貼り付けちゃいます。

echo '#!/bin/bash' > ./up && echo "sudo apt update && sudo apt -y upgrade" >> ./up && chmod +x ./up

ラズベリーパイなひとは aptを apt-getに直してください。

echo '#!/bin/bash' > ./up && echo "sudo apt-get update && sudo apt-get -y upgrade" >> ./up && chmod +x ./up

2.以後、こうするだけ

$./up

注意
ライセンスの確認とかのアップデートでCUIのGUIが頻繁にでるよなひとはさけてください。

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1