4 lines
56 B
Bash
4 lines
56 B
Bash
|
for app in ./.flatpak/*
|
||
|
do
|
||
|
flatpak install $app
|
||
|
done
|