GeoNetAgent, LDAPWeb, server-audit, server-connection
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash |
|
cd /var/www/html |
|
php artisan tinker --execute " |
|
\$row = DB::table('api_tokens')->latest()->first(); |
|
if (\$row) { |
|
echo json_encode((array)\$row, JSON_PRETTY_PRINT) . PHP_EOL; |
|
} else { |
|
echo 'no token' . PHP_EOL; |
|
} |
|
" 2>&1 | grep -v Deprecated
|
|
|