8 lines
164 B
Bash
Executable File
8 lines
164 B
Bash
Executable File
#!/bin/sh
|
|
MCEXEC=mcexec
|
|
dd if=/dev/zero of=testfile bs=$((1024 * 1024)) count=$((2 * 1024))
|
|
sync
|
|
sudo /sbin/sysctl vm.drop_caches=3
|
|
$MCEXEC ./CT3004
|
|
rm -f testfile
|