Skip to content

Instantly share code, notes, and snippets.

@careydayrit
Last active March 12, 2020 14:14
Show Gist options
  • Save careydayrit/3f22d9136bda12a724c3714246fe7c1f to your computer and use it in GitHub Desktop.
Save careydayrit/3f22d9136bda12a724c3714246fe7c1f to your computer and use it in GitHub Desktop.
Get System Information
MariaDB 10.0.23-MariaDB
Nginx 1.8.1
Fedora 22
<?php
system('lscpu');
<?php
system('free -mh');
# Wordpress Sites
echo 'system("lscpu");' | terminus wp wp site.env shell
echo 'system("free -mh");' | terminus wp site.env shell
# Drupal Sites
echo 'system("lscpu");' | terminus drush site.env php-script -
echo 'system("free -mh");' | terminus drush site.env php-script -
@careydayrit
Copy link
Author

Screenshot from 2019-10-23 21-41-49

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment