How to disable the «Enable Javascript Bundling» option from the command line?

Magento ≥ 2.2

bin/magento config:set dev/js/enable_js_bundling 0
bin/magento cache:clean

Magento < 2.2

mysql --host=<host> --user=<user> --password=<password> -D <database> -e "\
	UPDATE core_config_data SET value = 0 WHERE 'dev/js/enable_js_bundling' = path; \
";
bin/magento cache:clean

See also: