Compare commits
2 commits
c1569d0215
...
22c5766009
Author | SHA1 | Date | |
---|---|---|---|
22c5766009 | |||
90940fb3a4 |
7 changed files with 10 additions and 17 deletions
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/sh
|
#!/bin/sh -ex
|
||||||
[ "$(whoami)" != root ] && exec sudo "$0" "$@"
|
[ "$(whoami)" != root ] && exec sudo "$0" "$@"
|
||||||
apt-get clean
|
apt-get clean
|
||||||
apt-get update
|
apt-get update
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
#!/bin/sh
|
#!/bin/sh -ex
|
||||||
paru -Scc
|
paru -Scc
|
||||||
paru -Fy
|
paru -Fy
|
||||||
paru
|
paru
|
||||||
paru -Qdtq | paru -Rns -
|
paru -Qdtq | paru -Rns -
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
#!/bin/sh
|
#!/bin/sh -ex
|
||||||
apt clean
|
apt clean
|
||||||
pkg update
|
pkg update
|
||||||
pkg upgrade
|
pkg upgrade
|
||||||
apt autopurge -y
|
apt autopurge -y
|
||||||
|
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
yay -Scc
|
|
||||||
yay -Fy
|
|
||||||
yay
|
|
||||||
yay -Qdtq | yay -Rns -
|
|
||||||
|
|
|
@ -1,3 +1,2 @@
|
||||||
#!/bin/sh
|
#!/bin/sh -ex
|
||||||
sudo waydroid upgrade
|
sudo waydroid upgrade
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,2 @@
|
||||||
#!/bin/sh
|
#!/bin/sh -ex
|
||||||
yabridgectl sync
|
yabridgectl sync
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
#!/bin/sh
|
#!/bin/sh -ex
|
||||||
|
|
||||||
|
ssh-add
|
||||||
|
|
||||||
update_repo() {
|
update_repo() {
|
||||||
cd "$1" || return
|
cd "$1" || return
|
||||||
|
@ -6,8 +8,9 @@ update_repo() {
|
||||||
git pull
|
git pull
|
||||||
}
|
}
|
||||||
|
|
||||||
cd ~/git || exit
|
cd ~/git
|
||||||
|
|
||||||
|
set +ex
|
||||||
for i in *; do
|
for i in *; do
|
||||||
while [ "$(jobs -p | wc -l)" -ge 4 ]; do
|
while [ "$(jobs -p | wc -l)" -ge 4 ]; do
|
||||||
sleep 1
|
sleep 1
|
||||||
|
|
Loading…
Reference in a new issue