This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
function install_dependencies() { | |
echo "Installing dependencies..." | |
sudo apt -qq update | |
sudo apt -qq install -y curl git wget | |
# sudo apt -qq install -y bison flex kernel-package libelf-dev libssl-dev | |
sudo apt -qq install -y bison flex libelf-dev libssl-dev | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# From https://trac.cyberduck.io/ticket/7317 | |
# | |
# Should do it automatically, if it doesn't, check if ~/.config/filezilla/sitemanager.xml exists. | |
# If it doesn't, create the directory, and | |
cp ~/.filezilla/sitemanager.xml ~/.config/filezilla/sitemanager.xml | |
defaults delete ch.sudo.cyberduck bookmark.import.de.filezilla | |
# Relaunch Cyberduck |