dit document beschrijft hoe je Drupal bijwerkt naar een nieuwere versie
tar -cvzf /tmp/drupal.tar.gz <drupalDir>
rm -rf core vendor
rm -f *.* .[a-z]*
wget https://ftp.drupal.org/files/projects/drupal-x.y.z.tar.gz
tar -xzvf drupal-x.y.z.tar.gz
cp -Rv drupal-x.y.z/core .
cp -Rv drupal-x.y.z/vendor .
cp drupal-x.y.z/*.* .
cp drupal-x.y.z/.[a-z]* .
rm -rf drupal-x.y.z drupal-x.y.z.tar.gz /tmp/drupal.tar.gz