Skip to content
Snippets Groups Projects
Commit f368fb2b authored by Vinícius Fontoura's avatar Vinícius Fontoura
Browse files

added log_path

parent a9fddc92
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
LOG_PATH = $1
free | awk 'NR==2 {print $4}' >> $LOG_PATH
\ No newline at end of file
#!/bin/bash
LOG_PATH = $1
sysbench --test=memory --num-threads=1 run > $LOG_PATH
cat $LOG_PATH | grep Total\ operations: | awk '{print $4}' | cut -c2- >> $LOG_PATH
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment