forked from sh-edraft.de/sh_linux_installation_scripts
6 lines
106 B
Bash
6 lines
106 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
install_keepassxc() {
|
||
|
echo "Installing keepassxc"
|
||
|
sudo apt-get install keepassxc -y
|
||
|
}
|