blob_id
stringlengths 40
40
| language
stringclasses 1
value | repo_name
stringlengths 4
115
| path
stringlengths 2
970
| src_encoding
stringclasses 28
values | length_bytes
int64 31
5.38M
| score
float64 2.52
5.28
| int_score
int64 3
5
| detected_licenses
listlengths 0
161
| license_type
stringclasses 2
values | text
stringlengths 31
5.39M
| download_success
bool 1
class |
|---|---|---|---|---|---|---|---|---|---|---|---|
bd6dcfb67fdad9edd760a0af5d60d2b0efec19de
|
Shell
|
vsajip/kscript
|
/misc/boostrap_header.sh
|
UTF-8
| 707
| 3.1875
| 3
|
[
"MIT"
] |
permissive
|
function _in_path() { command -v "$1" >/dev/null 2>&1; }
_in_path kscript && echo "kscript is already installed at $(which kscript)" 1>&2 || {
function echo_and_eval() { echo "$ $@" 1>&2; eval "$@" 1>&2; }
_in_path sdk || {
export SDKMAN_DIR="$HOME/.sdkman" && curl "https://get.sdkman.io" | bash 1>&2 && \
echo_and_eval source "$SDKMAN_DIR/bin/sdkman-init.sh"
}
sdkman_auto_answer=true
_in_path java || echo_and_eval sdk install java
_in_path kotlin || echo_and_eval sdk install kotlin
_in_path gradle || echo_and_eval sdk install gradle
_in_path kscript || echo_and_eval sdk install kscript
echo_and_eval source "$SDKMAN_DIR/bin/sdkman-init.sh"
}
| true
|
8aee512d0b223d0cda815ad6745346dd5d37fa93
|
Shell
|
siauPatrick/seimur
|
/provision.sh
|
UTF-8
| 2,064
| 3.671875
| 4
|
[
"MIT"
] |
permissive
|
#!/usr/bin/env bash
VAGRANT_HOME_PATH='/home/vagrant'
PRJ_NAME=$1
function startup()
{
# postgreSQL
sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt/ $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add -
apt-get update -y
}
function install_python()
{
apt-get install -y python3-venv
VIRTUALENV_PATH="$VAGRANT_HOME_PATH/.env/$PRJ_NAME"
su -l vagrant -c "python3 -m venv $VIRTUALENV_PATH"
echo -e "
# virtualenv settings
source $VIRTUALENV_PATH/bin/activate
cd /vagrant
" >> $VAGRANT_HOME_PATH/.bashrc
su -l vagrant -c "$VIRTUALENV_PATH/bin/python -m pip install --upgrade pip"
su -l vagrant -c "$VIRTUALENV_PATH/bin/python -m pip install -r /vagrant/requirements/dev.txt"
}
function install_postgresql()
{
PG_VERSION="9.5"
PG_CONF="/etc/postgresql/$PG_VERSION/main/postgresql.conf"
PG_HBA="/etc/postgresql/$PG_VERSION/main/pg_hba.conf"
PG_DIR="/var/lib/postgresql/$PG_VERSION/main"
APP_DB_USER=vagrant
APP_DB_PASS=dbpass
APP_DB_NAME="$PRJ_NAME"_db
apt-get install -y "postgresql-$PG_VERSION" "postgresql-contrib-$PG_VERSION" "postgresql-server-dev-$PG_VERSION"
# Edit postgresql.conf to change listen address to '*':
sed -i "s/#listen_addresses = 'localhost'/listen_addresses = '*'/" "$PG_CONF"
# Append to pg_hba.conf to add password auth:
echo "host all all all md5" >> "$PG_HBA"
# Restart so that all new config is loaded:
service postgresql restart
cat << EOF | su - postgres -c psql
-- Create the database user:
CREATE USER $APP_DB_USER
WITH PASSWORD '$APP_DB_PASS' SUPERUSER CREATEDB;
-- Create the database:
CREATE DATABASE $APP_DB_NAME
WITH OWNER $APP_DB_USER
TEMPLATE=template0
ENCODING = 'UTF-8'
LC_COLLATE = 'en_US.UTF-8'
LC_CTYPE = 'en_US.UTF-8';
EOF
}
startup
install_python
install_postgresql
| true
|
831cc34f2c6060befea35bc6da14b440cb99b628
|
Shell
|
Ponce/slackbuilds
|
/system/clamav/doinst.sh
|
UTF-8
| 1,011
| 3.703125
| 4
|
[] |
no_license
|
config() {
for infile in $1; do
NEW="$infile"
OLD="$(dirname $NEW)/$(basename $NEW .new)"
# If there's no config file by that name, mv it over:
if [ ! -r $OLD ]; then
mv $NEW $OLD
elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
# toss the redundant copy
rm $NEW
fi
# Otherwise, we leave the .new copy for the admin to consider...
done
}
preserve_perms() {
NEW="$1"
OLD="$(dirname $NEW)/$(basename $NEW .new)"
if [ -e $OLD ]; then
cp -a $OLD ${NEW}.incoming
cat $NEW > ${NEW}.incoming
mv ${NEW}.incoming $NEW
fi
config $NEW
}
preserve_perms etc/rc.d/rc.clamav.new
config etc/freshclam.conf.new
config etc/clamd.conf.new
[ -f etc/clamav-milter.conf.new ] && config etc/clamav-milter.conf.new
config etc/logrotate.d/clamav.new
# Remove new log if one is already present
config var/log/clamav/clamd.log.new ; rm -f var/log/clamav/clamd.log.new
config var/log/clamav/freshclam.log.new ; rm -f var/log/clamav/freshclam.log.new
| true
|
1a4f1d9b1c7ba099ff1e9fb692c50dc070bdbf9e
|
Shell
|
uli-heller/uli-javawrapper
|
/bin/ant.sh
|
UTF-8
| 188
| 3
| 3
|
[
"BSD-3-Clause"
] |
permissive
|
#!/bin/sh
D="$(dirname "$0")"
D="$(cd "${D}"; pwd)"
if [ ! -d "${D}/groovy" ]; then
"${D}/prepare.sh"
fi
ANT_DIR="${D}/groovy"
java -jar "${ANT_DIR}/lib/ant-launcher-1.8.4.jar" "$@"
| true
|
91f5aaa2084c44b9057b78f1d37f1d12dfb2a5b7
|
Shell
|
sebsel/dotfiles
|
/tools/aliases.zsh
|
UTF-8
| 386
| 2.671875
| 3
|
[] |
no_license
|
alias dotenv="env \$(cat .env | xargs) "
alias miex="iex -S mix"
alias b64="cat | base64 -D"
alias toolbox="node ~/code/compose/toolbox/toolbox.js"
function woorden {
# Download from https://www.opentaal.org/bestanden/file/2-woordenlijst-v-2-10g-bronbestanden
cat ~/Documents/OpenTaal-210G-woordenlijsten/OpenTaal-210G-basis-gekeurd.txt |
grep $1 |
awk '{printf $0 " "}'
}
| true
|
f00a43a7b5f7c97af733230cc238fa9a3ff6071a
|
Shell
|
fossabot/BrainSTEM
|
/tools/bash/convert2DCM_common.bash
|
UTF-8
| 2,278
| 4.0625
| 4
|
[] |
no_license
|
#!/usr/bin/env bash
#
# This script contains common functions for scripts to convert NIfTI or image files back to DICOM
#
# Function to get the accession number from DICOM (or handle non-existant accession numbers)
function getAccNo {
# Reference DICOM file (to copy DICOM values from)
local ref_dcm="${1}"
# Get accession number from DICOM reference file
local acc_no=$(getDCMTag "${ref_dcm}" "0008,0050" "n")
# If there is no accession number, generate a random one using generateUID
if [[ $acc_no == "NOT_FOUND_IN_DICOM_HEADER" ]]; then
acc_no=$(generateUID)
fi
# In our local setup, we have to replace the last two positions of the accession number in order
# to route the resulting image to the research PACS. See setup.brainstem.sh
if [[ $replace_acc_no_last_two != "" ]]; then
acc_no=$(echo $acc_no | sed -e "s/[a-zA-Z0-9]\{2\}$/${replace_acc_no_last_two}/")
fi
echo ${acc_no}
}
# Function to source common functions for x2DCM functions
function sourceFunctions2DCM {
# Source the getDCMTag function, if necessary
if [[ ! "$(type -t getDCMTag)" = "function" ]]; then
source "${__dir}/../../tools/bash/getDCMTag.bash"
fi
# Source the generateUID function, if necessary
if [[ ! "$(type -t generateUID)" = "function" ]]; then
local __dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
source "${__dir}/../../tools/bash/generateUID.bash"
fi
}
# Function to set Series and Instance UIDs
function setSeriesAndInstanceUID {
# Directory containing the DICOM file to modify
local dcm_dir="${1}"
# Generate unique Series Instance UID
local seriesUID=$(generateUID)
# Set the Media Storage SOP Instance UID and SOP Instance UID
# NB: Modifying 0008,0018 will automatically modify 0002,0003, as well
info " Setting Series Instance UID to ${seriesUID}"
info " Setting Media Storage SOP Instance UID and SOP Instance UID"
${dcmftest} "${dcm_dir}/"* | \
grep -E "^yes:" | \
while read bool dcm; do
local instanceUID=$(generateUID)
"${dcmodify}" \
--no-backup \
--insert "(0020,000E)"="${seriesUID}" \
--insert "(0008,0018)"="${instanceUID}" \
"${dcm}" || error "dcmodify to set UID failed"
done || error "Setting UIDs failed"
}
| true
|
1589731e22ec2d7503fa41214595ea3ae964c859
|
Shell
|
impks27/scripts
|
/links/print_num_hl
|
UTF-8
| 74
| 2.796875
| 3
|
[] |
no_license
|
#!/bin/bash
num=10
for i in 1 2 3 4 5
do
echo "Looping number $i"
done
| true
|
fe116fe66a5eebed91a5c524eaa8e8f02dadd874
|
Shell
|
wcarhart/koi
|
/tests/scripts/workflow_example.sh
|
UTF-8
| 1,292
| 3.984375
| 4
|
[
"MIT"
] |
permissive
|
#!/bin/bash
set -e
: <<- COMMENT
To use koi:
1. source the koi script
2. override the 'koiname' variable with the name of your script
3. override the 'koidescription' variable with the description of your script
To add arguments:
1. add arguments to each function with __addarg
2. parse the arguments with __parseargs "$@"
To run the script, use the __koirun function at the very end of the script:
__koirun "$@"
COMMENT
source ../../koi
koiname=workflow_example.sh
koidescription="Examples of potential workflow-related commands you could make with koi"
koicolors=0
# Here's an example of of koi only using long options (starting with --)
function start {
__addarg "-h" "--help" "help" "optional" "" "Start a workflow given a workflow script"
__addarg "" "script" "positionalvalue" "required" "" "The workflow script"
__addarg "" "--name" "storevalue" "required" "" "The name of the workflow"
__addarg "" "--user" "storevalue" "optional" "`whoami`" "The workflow user"
__parseargs "$@"
# start your workflow!
}
function checkstatus {
__addarg "-h" "--help" "help" "optional" "" "Check the status of an existing workflow"
__addarg "" "--name" "storevalue" "required" "" "The name of the workflow to check"
__parseargs "$@"
# check your workflow
}
__koirun "$@"
| true
|
8261a4d95fa9118f64ddf11196fca0bee455341c
|
Shell
|
SHUO-HUAI/gap_sdk
|
/configs/gap8.sh
|
UTF-8
| 343
| 2.765625
| 3
|
[] |
no_license
|
#!/bin/bash -ex
export GAP_SDK_HOME="$(dirname $(dirname "$(readlink -f "${BASH_SOURCE[0]}")"))"
export TARGET_CHIP="GAP8"
export TARGET_NAME="gap"
export PULP_CURRENT_CONFIG=gap@config_file=chips/gap/gap.json
if [ -z "$BOARD_NAME" ]; then
export BOARD_NAME="gapuino"
fi
export GVSOC_CONFIG=$BOARD_NAME
. $GAP_SDK_HOME/configs/common.sh
| true
|
b61d33397932ba36419557b36ceef6d96da2b6f1
|
Shell
|
anupama-sinha/unix-repo
|
/fileCheckAllDir.sh
|
UTF-8
| 148
| 3.4375
| 3
|
[] |
no_license
|
m=$1
find /home -name $m
if [ $? -ne 0 ]
then
echo "Exists"
else
touch cal.sh
echo "$m has been created in the current working directory"
fi
| true
|
1f0c8e74255f8f9b13e04a362101b23a16e00fd5
|
Shell
|
pronabananda/javaone14_handsonhadoop
|
/hive.sh
|
UTF-8
| 583
| 3.046875
| 3
|
[] |
no_license
|
#!/bin/sh
grep hive.aux.jars.path /usr/lib/hive/conf/hive-site.xml >/dev/null 2>&1
if [ $? = 1 ]; then
sed -e '\#</configuration># i\
\
<property>\
<name>hive.aux.jars.path</name>\
<value>file:////usr/lib/hive/lib/hive-contrib.jar</value>\
<description>Add the Hive contrib JAR to Hive</description>\
</property>' < /usr/lib/hive/conf/hive-site.xml > /tmp/hive-site.xml
sudo rm -f /usr/lib/hive/conf/hive-site.xml
sudo mv /tmp/hive-site.xml /usr/lib/hive/conf
sudo chown root:root /usr/lib/hive/conf/hive-site.xml
sudo /etc/init.d/hive-server2 restart
fi
| true
|
c9f0e6c877e494f8b5d6391942ee9d914983981c
|
Shell
|
CosmicQ/AWS-Scripts
|
/set_log_retention.sh
|
UTF-8
| 2,549
| 4.125
| 4
|
[
"MIT"
] |
permissive
|
#!/bin/bash
#
# Simple script to set the log retention in cloudwatch to other
# than "forever". The first part is to collect the tokens for paging
# through the lists of logs. Once we have that, we can update each
# log to expire at a reasonable date.
#
################################################
PROFILE=""
RETENTION="90"
LAMBDA="14"
APIGATE="30"
################################################
if [ -n "$1" ]; then
PROFILE="--profile $1"
fi
REGIONS=("--region us-east-1" \
"--region us-west-1" \
"--region us-west-2" \
"--region eu-west-1" \
"--region eu-central-1" \
"--region ap-south-1" \
"--region ap-southeast-1" \
"--region ap-northeast-1" \
"--region ap-southeast-2" \
"--region ap-northeast-2" \
"--region sa-east-1")
NT=""
TOKENS=()
TOKENS[0]=" "
echo "Collecting tokens..."
for AWSREGION in "${REGIONS[@]}"; do
while true; do
RESULT=`aws $PROFILE $AWSREGION logs describe-log-groups $NT |jq .nextToken | sed -e 's/^"//' -e 's/"$//'`
if [ "$RESULT" = "null" ]; then
# The last page has been found. End this.
break
else
TOKENS=("${TOKENS[@]}" "--next-token $RESULT")
NT="--next-token $RESULT"
echo "Adding $RESULT."
fi
done
REGION_NAME=`echo $AWSREGION |awk '{print $2}'`
echo "Setting retention policy on log groups in region $REGION_NAME..."
for TOKEN in "${TOKENS[@]}"; do
for LGN in `aws $PROFILE $AWSREGION logs describe-log-groups $TOKEN |jq '.logGroups[].logGroupName' | sed -e 's/^"//' -e 's/"$//'`; do
if [[ $LGN == *"lambda"* ]]; then
aws $PROFILE $AWSREGION logs put-retention-policy --log-group-name $LGN --retention-in-days $LAMBDA
echo "aws $PROFILE $AWSREGION logs put-retention-policy --log-group-name $LGN --retention-in-days $LAMBDA"
elif [[ $LGN == *"API-Gateway"* ]]; then
aws $PROFILE $AWSREGION logs put-retention-policy --log-group-name $LGN --retention-in-days $APIGATE
echo "aws $PROFILE $AWSREGION logs put-retention-policy --log-group-name $LGN --retention-in-days $APIGATE"
else
aws $PROFILE $AWSREGION logs put-retention-policy --log-group-name $LGN --retention-in-days $RETENTION
echo "aws $PROFILE $AWSREGION logs put-retention-policy --log-group-name $LGN --retention-in-days $RETENTION"
fi
done
done
done
| true
|
6c0d22bca05e803b0ba4125ad749dd5dfb681c41
|
Shell
|
snowphone/dotfiles
|
/sshd.sh
|
UTF-8
| 819
| 3.484375
| 3
|
[] |
no_license
|
#!/usr/bin/env bash
## Check for accessibility
if [[ $(whoami) == "root" ]]; then
sudo=""
else
sudo="sudo"
fi
folder=$(dirname $0 | xargs realpath)
# Main phase
$sudo apt install -y openssh-server net-tools
$sudo ssh-keygen -A
#.bashrc 설정
#ssh server 설정
echo "Change port address to 61022"
$sudo sed -i 's/#\?Port 22/Port 61022/' /etc/ssh/sshd_config
$sudo sed -i 's/UsePrivilegeSeparation */UsePrivilegeSeparation no/' /etc/ssh/sshd_config
$sudo sed -i 's/PasswordAuthentication no/PasswordAuthentication yes/' /etc/ssh/sshd_config
echo "Edited /etc/sudoers to run 'service' command without asking passwords"
echo '%sudo ALL=NOPASSWD: /usr/sbin/service' | $sudo tee -a /etc/sudoers > /dev/null
echo "Please visit https://github.com/snowphone/WSL2-port-forwarding-guide and follow Instruction section"
| true
|
7ce31cf9b50a99245863029265863ea57ed1ea61
|
Shell
|
RobertSandiford/video-site-docker
|
/mongo-db/init-mongo-2.sh
|
UTF-8
| 456
| 2.96875
| 3
|
[] |
no_license
|
#!/bin/bash
set -e;
"${mongo[@]}" "$MONGO_INITDB_DATABASE" <<-EOJS
db.placeholder.insert({ 'placeholder' : '' })
EOJS
if [ -n "${mongo_db_user:-}" ] && [ -n "${mongo_db_pass:-}" ]; then
"${mongo[@]}" "$MONGO_INITDB_DATABASE" <<-EOJS
db.createUser({
user: $(_js_escape "$mongo_db_user"),
pwd: $(_js_escape "$mongo_db_pass"),
roles: ["readWrite"]
})
EOJS
else
# print warning or kill temporary mongo and exit non-zero
echo "warning"
fi
| true
|
e10b15c7b0e89764d2a3c8089ea60d574d66ca29
|
Shell
|
kinopyo/.dotfiles
|
/bin/gbrr
|
UTF-8
| 1,226
| 4.5
| 4
|
[] |
no_license
|
#!/bin/bash
# Show a menu of your recently used Git branches, allowing for a quick branch
# switch.
#
# Usage: gbrr [COUNT]
# COUNT is the number of recently used branches to show. Defaults to 10.
#
# Example:
# $ gbrr
# 0) f_test-1
# 1) f_test-whatever
# 2) master
# Switch to which branch? 1
#
# + git checkout f_test-whatever
# Switched to branch 'f_test-whatever'
# Your branch is up-to-date with 'origin/f_test-whatever'.
DEFAULT_COUNT=10
COUNT=${1-$DEFAULT_COUNT}
IFS=$'\r\n' BRANCHES=($(
# git for-each-ref refs/heads/ \
# --count=10 \
# --sort=-committerdate \
# --format='%(HEAD) %(color:yellow)%(refname:short)%(color:reset),%(authorname),(%(color:green)%(committerdate:relative)%(color:reset))' | \
# column -t -s ','
git reflog | \
sed -n 's/.*checkout: moving from .* to \(.*\)/\1/p' | \
perl -ne 'print unless $a{$_}++' | \
head -n $COUNT
))
for ((i = 0; i < ${#BRANCHES[@]}; i++)); do
echo "$i) ${BRANCHES[$i]}"
done
read -p "Switch to which branch? "
if [[ $REPLY != "" ]] && [[ ${BRANCHES[$REPLY]} != "" ]]; then
echo
set -x
git checkout ${BRANCHES[REPLY]}
else
echo Aborted.
fi
| true
|
3519c9c21057e9d5e53a01c8ed498a49e35d81e2
|
Shell
|
adamci/.adamci
|
/install.sh
|
UTF-8
| 1,626
| 3.4375
| 3
|
[] |
no_license
|
#!/bin/bash
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
if [ "$DIR" != ~/.adamci ]; then
echo "Repo .adamci must be installed in home directory!"
exit
fi
# Validate OS
source ./identify_os.sh
if [ "$DIST" = "0" ]; then
echo $'Unsupported OS\nAborting install_packages.sh!\n'
exit 1
fi
if [ "$DIST" = "2" ] && ! type $ARCH_PACMAN &> /dev/null; then
echo "Install $ARCH_PACMAN before continuing"
exit 1
fi
echo "Installing for DIST=$DIST"
# Validate presence of best editor
if ! type "vim" &> /dev/null || [ "$(vim --version | head -1 | cut -d ' ' -f 5 | head -c 1)" -lt "8" ]; then
echo "Please install vim at version 8 or higher!"
exit 1
fi
# Install shell dependencies
if [ ! -d ~/.vim/bundle/Vundle.vim ]; then
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
fi
if [ ! -d ~/.config/base16-shell ]; then
git clone https://github.com/chriskempson/base16-shell.git ~/.config/base16-shell
fi
# Create symbolic links
type zsh &> /dev/null && ln -vis "${DIR}/.zshrc" ~/.zshrc
type vim &> /dev/null && ln -vis "${DIR}/.vimrc" ~/.vimrc
type git &> /dev/null && ln -vis "${DIR}/.gitconfig" ~/.gitconfig
type tmux &> /dev/null && ln -vis "${DIR}/.tmux.conf" ~/.tmux.conf
type ag &> /dev/null && ln -vis "${DIR}/.agignore" ~/.agignore
ln -vis "${DIR}/.ideavimrc" ~/.ideavimrc
# Install vim plugins
vim +PluginUpdate +qa
source ./deps/command-t.sh
source ./deps/you-complete-me.sh
# Install apps
source ./deps/antigen.sh
source ./deps/pkgfile.sh
source ./deps/ag.sh
source ./deps/tmux.sh
source ./deps/diff-so-fancy.sh
source ./deps/icdiff.sh
| true
|
749790e01d234cd24926e726b6ee99ec74a196e8
|
Shell
|
dubee/test-infra
|
/tools/cleanup/cleanup-functions.sh
|
UTF-8
| 2,640
| 4.09375
| 4
|
[
"Apache-2.0"
] |
permissive
|
#!/bin/bash
# Copyright 2018 The Knative Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Functions for cleaning up GCRs.
# It doesn't do anything when called from command line.
source $(dirname $0)/../../scripts/library.sh
# Delete old images in the given GCR.
# Parameters: $1 - gcr to be cleaned up (e.g. gcr.io/fooProj)
# $2 - days to keep images
function delete_old_images_from_gcr() {
[[ -z $1 ]] && abort "missing gcr name"
[[ -z $2 ]] && abort "missing days to keep images"
is_protected_gcr $1 && \
abort "Target GCR set to $1, which is forbidden"
for image in $(gcloud --format='value(name)' container images list --repository=$1); do
echo "Checking ${image} for removal"
delete_old_images_from_gcr ${image} $2
local target_date=$(date -d "`date`-$2days" +%Y-%m-%d)
for digest in $(gcloud --format='get(digest)' container images list-tags ${image} \
--filter="timestamp.datetime<${target_date}" --limit=99999); do
local full_image="${image}@${digest}"
echo "Deleting image: ${full_image}"
if (( DRY_RUN )); then
echo "[DRY RUN] gcloud container images delete -q --force-delete-tags ${full_image}"
else
gcloud container images delete -q --force-delete-tags ${full_image}
fi
done
done
}
# Delete old images in the GCP projects defined in the yaml file provided.
# Parameters: $1 - yaml file path defining projects that will be cleaned up
# $2 - regex pattern for parsing the project names
# $3 - days to keep images
function delete_old_gcr_images() {
[[ -z $1 ]] && abort "missing resource yaml path"
[[ -z $2 ]] && abort "missing regex pattern for project name"
[[ -z $3 ]] && abort "missing days to keep images"
local target_projects # delared here as local + assignment in one line always return 0 exit code
target_projects="$(grep -Eio "$2" "$1")"
[[ $? -eq 0 ]] || abort "no project found in $1"
for project in ${target_projects}; do
echo "Start deleting images from ${project}"
delete_old_images_from_gcr "gcr.io/${project}" $3
done
}
| true
|
15f596fe328a3b850caa3a1e45e7262c41d3a266
|
Shell
|
lgannoaa/global-workflow
|
/util/ush/xlf_links.sh
|
UTF-8
| 276
| 3.09375
| 3
|
[] |
no_license
|
set -a
num=1;>xlflnk
while [ $num -le 99 ]
do
echo "[ -n \"\$XLFUNIT_$num\" ] && ln -sf \$XLFUNIT_$num fort.$num" >>xlflnk
num=`expr $num + 1`
done
chmod +x xlflnk; ./xlflnk; rm xlflnk
echo; echo `date` links.sh produced the following soft links:
echo; ls -ln fort.*; echo
| true
|
29a2ae2ab24da1221c4bcc5d2258c54fd30c8c2d
|
Shell
|
bergware/dynamix
|
/source/cache-dirs/scripts/cache_dirs
|
UTF-8
| 52,891
| 3.40625
| 3
|
[] |
no_license
|
#!/bin/bash
# Using '/bin/bash' instead of '/usr/bin/env bash' means process gets listed in ps and pstree as cache_dirs instead of bash cache_dirs
#Programmer notes
# Check with https://www.shellcheck.net/
####################################################################################
# cache_dirs
# A utility to attempt to keep directory entries in the linux
# buffer cache to allow disks to spin down and no need to spin-up
# simply to get a directory listing on an unRAID server.
#
# Version 1.0 Initial proof of concept using "ls -R"
# Version 1.1 Working version, using "ls -R" or "find -maxdepth"
# Version 1.2 Able to be used with or without presence of user-shares.
# Removed "ls -R" as it was too easy to run out of ram. (ask me how I know)
# Added -i include_dir to explicitly state cached directories
# Added -v option, verbose statistics when run in foreground
# Added -q option, to easily terminate a process run in the background
# Added logging of command line parameters to syslog
# Version 1.3 Added -w option, to wait till array comes online before starting scan
# of /mnt/disk* share folders.
# Changed min-seconds delay between scans to 1 instead of 0.
# Moved test of include/exclude directories to after array is on-line
# Added logging of mis-spelled/missing include/exclude dirs to syslog
# Added ability to have shell wildcard expansion in include/exclude names
# Version 1.4 Fix bug with argument order passed to find when using -d option
# Fixed command submitted to "at" to use full path. Should not need to
# set PATH variable in "go" script.
# Added ability to also cache scan /mnt/user with -u option
# Version 1.4.1 Fixed version comment so it is actually a comment.
# Version 1.5 Added -V to print version number.
# Added explicit cache of root directories on disks and cache drive
# Modified "average" scan time statistic to be weighted average with a window
# of recent samples.
# Added -a args option to allow entry of args to commands after dir/file name
# example: cache_dirs -a "-ls" -d 3
# This will execute "find disk/share -ls -maxdepth 3"
# Version 1.6 Fixed bug... if -q was used, and cache_dirs not currently running,
# it started running in error. OOps... Added the missing "exit"
# Changed vfs_cache_pressure setting to be 1 instead of 0 by default.
# Added "-p cache_pressure" to allow experimentation with vfs_cache_pressure values
# (If not specified, default value of 1 will be used)
# Made -noleaf the default behavior for the "find" command (use -a "" to disable).
# Added logic to force all disks "busy" by starting a process with each as their
# current working directory. This will prevent a user from seeing a frightening
# Unformatted description if they attempt to stop the array. A second "Stop" will
# succeed (the scan is paused for 2 minutes, so it may be stopped cleanly)
# Added new -B option to revert to the old behaviour and not force disks busy if by
# chance this new feature causes problems for some users.
# Allow min seconds to be equal to max seconds in loop delay range.
# Added run-time-logging, log name = /var/log/cache_dirs.log
# Version 1.6.1 Fixed bug. Added missing /mnt/cache disk to scanned directories
# Version 1.6.2 Added trap to clean up processes after kill signal when run in background
# Version 1.6.3 Modified to deal with new un-mounting message in syslog in 4.5b7 to
# allow array shutdown to occur cleanly.
# Version 1.6.4 Modified to suspend scan during time "mover" script is running to prevent
# DuplicateFile messages from occurring as file is being copied.
# Added -S option to NOT suspend scan during mover process.
# Added logic to re-invoke cache_dirs if array is stopped and then re-started
# by submitting command string to "at" to re-invoke in a minute.
# Added entry to "usage()" function for -B
# Version 1.6.5 Fixed what I broke in looking for "mover" pid to suspend during the "mover"
# to eliminate warnings in syslog about duplicate files detected while files were
# being copied.
# Version 1.6.6 Fixed mover-detection to use the exact same logic as "mover" (and fixed stupid typo I had made)
# Version 1.6.7 Added cache_pressure to "usage" statement, fixed bug where it reverted to 10 after being invoked through "at"
# when used with the -w option.
# Version 1.6.8 Added -U NNNNN option to set ulimit, and detection of 64 bit OS so odds are this new option will not be needed.
# by default, ulimit is set to 5000 on 32 bit OS, and 30000 on 64 bit OS. Either can be over-ridden with -U NNNNN on command line
# Version 1.6.9 Removed exec of /bin/bash. Newer bash was not setting SHELL variable causng infinate loop if invoked from "go" script.
# Changed default ulimit on 64 bit systems to 50000.
# by default, ulimit is now set to 5000 on 32 bit OS, and 50000 on 64 bit OS. Either can be over-ridden with -U NNNNN on command line
# Setting ulimit to zero ( with "-U 0" option) is now special, cache_dirs will not set any ulimit at all. You'll inherit the system value, whatever it might be.
# Joe L.
#
# Version 2.0.0 Added gradual depth to avoid continous scans of filesystem, monitor of disk-idle, and better user-feedback as to disk spin-up in log-file.
# Now stops cache_dirs immediately on stop signal (eg array stop) including stopping the currently running find-process.
# Force-disk-busy now defaults no and inverted flag (and changed -B to -b) because it was (mostly) unRaid 4 and its unnessary when using plg with unmount disk event.
# Version 2.0.1 Fixed missing sleep. Now decreases scan-depth after few seconds (20-40s) if cache is lost after many successful cache-hits, because we don't want cache_dirs to be a resource-hog when system is otherwise occupied.
# Version 2.0.2 Fixed looping bash check in unRaid 6, plus fixed some too aggressive depth checks.
# Version 2.0.3 Bugfix suspend mover, and added concise log of lost cache.
# Version 2.0.4 Added more lost cache log, enabled by creating log file /var/log/cache_dirs_lost_cache.log
# Version 2.0.5 Updated for unRaid 6.1.2 new location of mdcmd (used to find idle-times of disks)
# Version 2.0.6 Included original 'B' option, it is unused but kept for compatibility reasons
# arberg
#
# Version 2.1.0 Modified for unRaid V6.1 and above only.
# Removed V5 specific code.
# Removed disks busy code.
# Removed wait for array to come on line.
# Remove unused variables.
# Modifications to improve readability.
# Version 2.1.1 Removed additional unused variables.
# Removed V5 ulimit usage info that doesn't apply.
# Show type of scanning being done - adaptive or fixed when cache_dirs is started.
# dlandon
#
# Version 2.2.0 When cache lost, don't wait for disks idle, instead decrease depth
# Now scans each disks and cache in separate processes. Thus removed option -u for scan user
# Fixed loss of adaptive after 1 week
# Weekly rescan only when disks been idle long
# Apaptive scan will not retry increasing level to previous seen stable level until disks have been idle for a long time (20s)
# -q now also kills subproccesses immediately (so cache_dirs does not prevent stopping the array)
# Added file-count and depth adjustment by filecount
# Version 2.2.1 Added disabling of multithreaded scan of disks flag -T
# Added diagnostics generate zip, flag -L
# Added -P print file count flag
# Disk idle times sometimes reported as crazy high numbers (when disks spun down on some systems). Report 9999 instead of crazy idle-times
# Added '-u' option to scan user share again, because some users reports disks spinning up on access of /mnt/user, though not /mnt/disk*
# Version 2.2.2 Added minimum depth param -c for adaptive depth scanning
# Version 2.2.3 Logging
# Version 2.2.4 Added rolled logs to -L diagnostics archive
# Version 2.2.5 Improved diagnostics info. Fixed sleep duration, before fixed depth always slept 1s, now it depends on disks idle and avg scan time.
# Version 2.2.6 CSV logging with all scan timings
# Version 2.2.7 Fixed -a option which was broken in 2.2
# arberg
#
# Version 2.2.8 Added multi-cache pool support
# change disk* to disk[0-9]* to avoid issues with the UD plugin
# bergware
####################################################################################
version=2.2.8
program_name=$(basename "$0")
arg_count=$#
run_log="/var/log/cache_dirs.log"
csv_log="/var/log/cache_dirs.csv"
lost_cache_log="/var/log/cache_dirs_lost_cache.csv"
usage() {
echo
echo "Usage: $program_name [-m min_seconds] [-M max_seconds] [-F] [-d maxdepth(adaptive)] [-D maxdepth(fixed)] [-c command] [-a args] [-e exclude_dir] [-i include_dir]"
echo " $program_name -V = print program version"
echo " $program_name -q"
echo " $program_name -l on = turn on logging to $run_log and $lost_cache_log and $csv_log"
echo " $program_name -l off = turn off logging to $run_log and $lost_cache_log and $csv_log"
echo " -m NN = minimum seconds to wait between directory scans (default=1)"
echo " -M NN = maximum seconds to wait between directory scans (default=10)"
echo " -U NN = set ulimit to NN to limit memory used by script (default=50000), '-U 0' sets no ulimit at all)"
echo " -F = do NOT run in background, run in Foreground and print statistics as it loops and scans"
echo " -v = when used with -F, verbose statistics are printed as directories are scanned"
echo " -s = shorter-log - print count of directories scanned to syslog instead of their names"
echo " -d NN = max depth to allow when searching adaptively for appropriate depth level, used in \"find -maxdepth NN\" "
echo " -D NN = sets fixed depth level and disables adaptive depth level, uses \"find -maxdepth NN\" "
echo " -t NN = time in seconds between scheduled scan towards max depth, default weekly; this setting is only relevant with adaptive scan enabled (without -D setting)"
echo " -W NN = Disk Idle Timer - When the disks have been idle this long, cache_dirs adaptive scan starts working towards building the cache."
echo " -X NN = timeout in seconds for direcotry scan during disk-idle periods (and when fixed depth -D is set)"
echo " -Y NN = timeout in seconds for direcotry scan during initial scan and when cache has been lost"
echo " -Z NN = timeout in seconds for direcotry scan after all directories have been cached"
echo " -c command = use command instead of \"find\" "
echo " (\"command\" should be quoted if it has embedded spaces)"
echo " -a args = append args to command"
echo " -u = also scan /mnt/user (scan user shares) - may considerably increase cpu time, and should not be necessary but seem to be for some"
echo " -e exclude_dir (may be repeated as many times as desired)"
echo " -i include_dir (may be repeated as many times as desired)"
echo " -p NN = set cache_pressure to NN (by default = 10). 0 means never reclaim cache. See 'vfs_cache_pressure' in https://www.kernel.org/doc/Documentation/sysctl/vm.txt"
echo " -S = do not suspend scan during 'mover' process"
echo ""
echo "Diagnostics, log:"
echo " -z = concise log (log run criteria on one line)"
echo " -P = compute files in each share and exit. Can be used with maxdepth -d param, and include -i and exclude -e."
echo " -L = generate diagnostics zip-file and exit"
echo " -T = disable multithreaded scan of disks"
echo " -q = terminate any background instance of cache_dirs"
echo ""
}
background=yes
verbose=no
# min scan seconds ignored, always sleep max, because it always tended towards min_seconds anyway and seems unnecessary
min_seconds=1
max_seconds=10
short_log=no
maxDepthUnbounded=9999
maxDepth="$maxDepthUnbounded"
fixdepth=-1
command="find"
window_array_length=20
avg_elapsed_time=0
exclude_array_count=0
include_array_count=0
quit_flag="no"
suspend_during_mover="yes"
commandargs=$*
args="-noleaf"
concise_log="no"
include_scan_of_user_share=0
# When min_disk_idle_before_restarting_scan_sec was 4 it restarting scanning too soon
min_disk_idle_before_restarting_scan_sec=60
# scan_timeout_sec_stable used for busy rescan and stable scan, scan_timeout_sec_idle used for initial on disks idle scan
scan_timeout_sec_busy=30
scan_timeout_sec_idle=150
scan_timeout_sec_stable=30
slow_scan_time_limit=15
# Adaptively increase depth by 1 until depth_max_incremental_depth, then go to $maxDepth
depth_max_incremental_depth=20
frequency_of_full_depth_scan_sec=$((7*24*3600))
MODE_IDLE_RESCANNING=1
MODE_BUSY_RESCANNING=2
MODE_STABLE=3
MODE_STABLE_IDLE=4
mode=$MODE_BUSY_RESCANNING
no_idle_scans_increase_depth=3
no_busy_scans_increase_depth=50
# Note that we decrease depth immediately if a scan has a timeout. A slow scan means its lasts longer than slow_scan_time_limit=15
no_slow_scans_decrease_depth_idle=4
no_slow_scans_decrease_depth_busy=4
no_slow_scans_decrease_depth_stable=4
min_no_scans_at_new_level=3
multithreaded_scan=1
ulimit_mem=50000
do_print_file_counts=0
minDepth="4"
# Constants
NANO_PR_SEC=1000000000
NANO_PR_MS=1000000
# cache_pressure of 0 will potentially run out of RAM if a large directory is scanned and not enough RAM
# esists. User processes will then be killed to free space rather than cache freed.
# (It has happened several times on my server when I forgot to exclude my data folder.
# It is not fun trying to regain control without a full reboot. I've changed the default to "1" instead. )
# If you have enough RAM, and few enough files being cached, you can specify "-p 0" on the command line
# to set the vfs_cache_pressure to 0. Otherwise, this default value of 1 should prevent memory starvation
# and the OOM (out-of-memory) state killing on your processes to free up some RAM.
# 1 did not do it with my 500Meg of RAM... trying cache_pressure of 10, use -p 1 if you still want the old value
cache_pressure=10
# Array & Pool devices
array=/mnt/disk[0-9]*
pools=$(ls -d /mnt/*|grep -Pv '/(disk[0-9]+|disks|user0?)$')
verbose_echo() {
[ $background = "no" ] && [ $verbose = "yes" ] && echo "$1"
}
log() {
[ $background = "no" ] && [ $verbose = "yes" ] && echo "$*"
[ "$run_log" != "" ] && [ -f "$run_log" ] && echo "$*" >> $run_log
}
syslog() {
log $1
echo "$1" | logger "-t$program_name"
}
syslogerror() {
[ "$run_log" != "" ] && [ -f "$run_log" ] && echo "$*" >> $run_log
echo "$1" | logger "-t$program_name"
}
logCsvFile() {
theLogFile="$1"
shift
if [ "$theLogFile" != "" ] && [ -f "$theLogFile" ] ; then
first=1
for var in "$@"
do
if ((first == 0)) ; then
echo -n ';'
fi
echo -n "\"$var\""
first=0
done >> $theLogFile
echo >> $theLogFile
fi
}
logLostCache() {
logCsvFile $lost_cache_log $*
}
logLostCacheSimple() {
logLostCache $start_time_txt ${elapsed_secs} ${prev_sleep_duration} ${time_since_disk_access_before_scan_sec} ${time_since_disk_access_after_scan_sec} $appliedDepth $appliedMaxDepthCurrent $appliedMaxDepth $1 $depth_slow_scan_counter $depth_success_idle_incr_counter
}
logLostCacheHeader() {
# Cannot be logged with logCsv because the for-loop breaks on spaces, not param numbers
if [ "$lost_cache_log" != "" ] && [ -f "$lost_cache_log" ] ; then
echo '"Date";"Time";"ScanTime";"PrevSleep";"IdleTimeBeforeScan";"IdleTimeAfterScan";"Depth";"MaxDepthCurrent";"MaxDepthWeek";"ForcedRestartDepthScan";"Scans at depth";"Scans succes count"' >> $lost_cache_log
fi
}
logCsv() {
logCsvFile "$csv_log" $*
}
logCsvSimple() {
logCsv $(date "+%Y.%m.%d") $(date "+%H:%M:%S") ${elapsed_secs} ${prev_sleep_duration} ${time_since_disk_access_before_scan_sec} ${time_since_disk_access_after_scan_sec} $appliedDepth $appliedMaxDepthCurrent $appliedMaxDepth $depth_slow_scan_counter $depth_success_idle_incr_counter
}
logCsvHeader() {
# Cannot be logged with logCsv because the for-loop breaks on spaces, not param numbers
if [ "$lost_cache_log" != "" ] && [ -f "$lost_cache_log" ] ; then
echo '"Date";"Time";"ScanTime";"PrevSleep";"IdleTimeBeforeScan";"IdleTimeAfterScan";"Depth";"MaxDepthCurrent";"MaxDepthWeek";"Scans at depth";"Scans at depth with idle disks"' >> $csv_log
fi
}
run_diagnostics() {
echo "################## PS #######################"
psCommand="ps -e x -o ppid,pid,pgid,%cpu,%mem,tty,vsz,rss,etime,cputime,rgroup,ni,fname,args"
$psCommand | head -1
$psCommand | grep "cache_dirs\|find\|wc"
echo "################## PSTREE #######################"
pstree -p | grep -2 cache_dirs
echo "################## TOP #######################"
top -b -n1 | head -20
echo "################## MEMORY #######################"
free -m
echo "################## unRAID Version #######################"
cat /proc/version
head -1 /boot/changes.txt
}
while getopts "a:p:m:M:c:d:D:e:i:l:FszBbwuvVhqSc:U:t:W:X:Y:Z:LTP" opt; do
case $opt in
c ) minDepth="$OPTARG"
((minDepth < 1)) && minDepth=1
;;
m ) min_seconds=$OPTARG ;;
M ) max_seconds=$OPTARG ;;
F ) background=no ;;
v ) verbose=yes ;;
V ) echo "$program_name version: $version"; exit 0 ;;
u ) include_scan_of_user_share=1 ;;
c ) command="$OPTARG" ;;
a ) args="$OPTARG" ;;
d ) maxDepth=$OPTARG
(( maxDepth <= depth_max_incremental_depth )) && depth_max_incremental_depth=$((maxDepth - 1))
(( depth_max_incremental_depth == 0 )) && depth_max_incremental_depth=1
command="find" ;;
D ) fixdepth=$OPTARG
command="find" ;;
i ) include_array[$include_array_count]="$OPTARG"
include_array_count=$((include_array_count+1)) ;;
e ) exclude_array[$exclude_array_count]="$OPTARG"
exclude_array_count=$((exclude_array_count+1)) ;;
h ) usage >&2 ; exit 0 ;;
p ) cache_pressure="$OPTARG" ;;
U ) ulimit_mem="$OPTARG" ;;
q ) quit_flag="yes" ;;
w ) ;; # unused, kept for compatibility reasons
s ) short_log="yes" ;;
B ) ;; # unused, kept for compatibility reasons
b ) ;; # unused, kept for compatibility reasons
S ) suspend_during_mover="no" ;;
z ) concise_log="yes" ;;
t ) frequency_of_full_depth_scan_sec="$OPTARG" ;;
l )
case "$OPTARG" in
on)
touch $run_log
touch $lost_cache_log
touch $csv_log
echo "Logging enabled to $run_log and $lost_cache_log and $csv_log"
;;
off)
rm "$run_log"
rm "$lost_cache_log"
rm "$csv_log"
echo "Logging to $run_log stopped"
;;
*)
echo "Invalid argument to -l option"
echo "Usage:" >&2
echo "cache_dirs -l on" >&2
echo "or" >&2
echo "cache_dirs -l off" >&2
exit 2
;;
esac
;;
L )
run_diagnostics | tee cache_dirs_diagnostics_processes.log
[ -f cache_dirs_diagnostics.zip ] && rm cache_dirs_diagnostics.zip
zip -j cache_dirs_diagnostics.zip cache_dirs_diagnostics_processes.log /var/log/syslog /var/log/cache_dirs*
rm cache_dirs_diagnostics_processes.log
echo
echo "Generated cache_dirs_diagnostics.zip"
exit 0
;;
P ) do_print_file_counts=1 ;;
T ) multithreaded_scan=0 ;;
W ) min_disk_idle_before_restarting_scan_sec="$OPTARG" ;;
X ) scan_timeout_sec_idle="$OPTARG" ;;
Y ) scan_timeout_sec_busy="$OPTARG" ;;
Z ) scan_timeout_sec_stable="$OPTARG" ;;
\?) usage >&2 ; exit ;;
esac
done
if [ "$(whoami)" != "root" ]
then
echo "ERROR: Run as root"
exit 1
fi
function join { local IFS="$1"; shift; echo "$*"; }
build_dir_list() {
# build a list of directories to cache.
# If no "-i" options are given, this will be all the top level directories in $array and $pools
# If "-i" entries are given, they will be the only top level dirs cached.
# If "-e" (exclude) directories are given, they are then deleted from the list by the comm -23 coommand.
if [ $include_array_count -gt 0 ] ; then
top_dirs=`(
# Include designated directories
a=0
while test $a -lt $include_array_count
do
included_excl=$(find $array $pools -type d -maxdepth 1 -mindepth 1 -name "${include_array[$a]}" -exec basename {} \; 2>/dev/null)
echo "$included_excl" | sort -u
a=$((a+1))
done
)| sort -u`
else
top_dirs=$(find $array $pools -type d -maxdepth 1 -mindepth 1 -exec basename {} \; 2>/dev/null | sort -u)
fi
exclude_dirs=`(
# Exclude designated directories from being processed
a=0
while test $a -lt $exclude_array_count
do
expanded_excl=$(find $array $pools -type d -maxdepth 1 -mindepth 1 -name "${exclude_array[$a]}" -exec basename {} \; 2>/dev/null)
echo "$expanded_excl" | sort -u
a=$((a+1))
done
)| sort -u`
scan_dirs=$(comm -23 <(echo "$top_dirs") <(echo "$exclude_dirs"))
echo "$scan_dirs"
}
if (( do_print_file_counts == 1 )) ; then
dir_list=$(build_dir_list)
depth_arg=""
if [ "$maxDepth" -ne "$maxDepthUnbounded" ] ; then
depth_arg="-maxdepth $maxDepth"
echo "Computing number of files until max depth $maxDepth"
else
echo "Computing number of files"
fi
for share_dir in $dir_list
do
echo $share_dir: $(find $array/$share_dir $(echo $pools|tr ' ' '\n'|awk '{print $1"/$share_dir"}') $depth_arg 2>/dev/null | wc -l )
done
exit 0
fi
# We need to use it with -KILL
killtree() {
local _pid=$1
local _sig=${2:--TERM}
kill -stop ${_pid} # needed to stop quickly forking parent from producing children between child killing and parent killing
for _child in $(ps -o pid --no-headers --ppid ${_pid}); do
killtree ${_child} ${_sig}
done
kill ${_sig} ${_pid}
}
lockfile="/var/lock/cache_dirs.LCK"
if [ -f "${lockfile}" ] ; then
# The file exists so read the PID
# to see if it is still running
lock_pid=$(head -n 1 "${lockfile}")
pid_running=$(ps -p "${lock_pid}" | grep ${lock_pid})
if [ -z "${pid_running}" ] ; then
if [ "$quit_flag" = "no" ] ; then
# The process is not running
# Echo current PID into lock file
echo $$ > "${lockfile}"
else
echo "$program_name ${lock_pid} is not currently running "
rm "${lockfile}"
exit 0
fi
else
if [ "$quit_flag" = "yes" ] ; then
echo "Stopping $program_name process $lock_pid"
syslog "Stopping $program_name process $lock_pid"
# 1. Remove lock-file so we don't spawn new find-processes
rm "${lockfile}"
# Sleep 1 because it means we will get log info if slow find processes isn't running
sleep 1;
killtree "$lock_pid" -KILL
exit 0
else
echo "$program_name is already running [${lock_pid}]"
exit 2
fi
fi
else
if [ "$quit_flag" = "yes" ] ; then
echo "$program_name not currently running "
exit 0
else
echo $$ > "${lockfile}"
fi
fi
log "$program_name version $version"
#Try to play nice
if [ "$ulimit_mem" -gt 0 ] ; then
log "Setting Memory ulimit to $ulimit_mem"
ulimit -v "$ulimit_mem"
else
log "No Memory ulimit applied"
fi
# validate the cache pressure
cc="$(echo $cache_pressure | sed 's/[0-9]//g')"
if [ ! -z "$cc" ] ; then
echo "error: cache_pressure must be numeric." >&2
usage >&2
exit 2
fi
# validate the min number of seconds
cc="$(echo $min_seconds | sed 's/[0-9]//g')"
if [ ! -z "$cc" ] ; then
echo "error: min number of seconds must be numeric (whole number, not negative)." >&2
usage >&2
exit 2
fi
# validate the max number of seconds
cc="$(echo $max_seconds | sed 's/[0-9]//g')"
if [ ! -z "$cc" ] ; then
echo "error: max number of seconds must be numeric." >&2
usage >&2
exit 2
fi
if [ $max_seconds -lt $min_seconds ] ; then
echo "error: max number of seconds must be greater than or equal min number of seconds." >&2
usage >&2
exit 2
fi
# validate the maxDepth
cc="$(echo $maxDepth | sed 's/[0-9]//g')"
if [ ! -z "$cc" ] ; then
echo "error: directory scan maxdepth must be numeric." >&2
usage >&2
exit 2
fi
cc="$(echo $frequency_of_full_depth_scan_sec | sed 's/[0-9]//g')"
if [ ! -z "$cc" ] ; then
echo "error: scheduled rescan time must be numeric, with -t $frequency_of_full_depth_scan_sec" >&2
usage >&2
exit 2
fi
if (( minDepth > maxDepth )) ; then
syslog "WARNING: minDepth > maxDepth - corrected"
minDepth="$maxDepth"
fi
shift $((OPTIND - 1))
# start out in the middle of the range allowed
#num_seconds=$((( $max_seconds + $min_seconds ) / 2 ))
num_seconds=$max_seconds
log "Setting cache_pressure=$cache_pressure"
sysctl vm.vfs_cache_pressure=$cache_pressure >/dev/null 2>&1
# use function like this: result=$(fnc_time_since_last_disk_access)
fnc_time_since_last_disk_access() {
# check if array is mounted by checking for disk1 directory
if [ -d /mnt/disk1 ] ; then
# UnRaid >= 6.1.2 (I think)
mdcmd_cmd=/usr/local/sbin/mdcmd
# rdevLastIO will be non-zero if a disk is spinning, it will be the timestamp of last IO (in seconds since epoch)
last=$($mdcmd_cmd status | grep -a rdevLastIO | grep -v '=0')
lastAccess="$(echo $last | awk '{t=systime(); gsub("rdevLastIO..=",""); for(i = 1; i <= NF; i++) a[++y]=$i}END{c=asort(a); if (NF > 0) print t-a[NF]; else print 9998; }')"
if (( lastAccess > 9999)) ; then
echo "9999"
else
echo "$lastAccess"
fi
# Code to log all disk ages
# ages=$(echo $last | awk '{ t=systime(); for(i = 1; i <= NF; i++){ match($i, /rdevLastIO.([0-9]+)/, capgroups); gsub("rdevLastIO..=","", $i); print capgroups[1] "=" t-$i } }') #print "diskage" i "=" t-$i
# log "Ages: $ages"
else
# Array is not started
echo "9997"
fi
}
depthMinusOne() {
depth=$1
if (( depth <= minDepth )) ; then
echo "$minDepth"
elif (( depth == maxDepth)) ; then
echo "$depth_max_incremental_depth"
else
echo $(( depth - 1 ))
fi
}
depthMinusPercent() {
depth="$1"
percent="$2"
if (( percent <=0 || percent >= 100 )); then
log "error percent $percent"
percent=20
fi
local filesAtDepth="${files_at_depth_map[$depth]}"
local depth_minus_one_value
depth_minus_one_value=$(depthMinusOne "$depth")
local result=$minDepth
for ((i=depth_minus_one_value; i > 1 && i >= minDepth; i--)) ; do
# bash need $ on $appliedDepth inside hashmap inside (())
if (( files_at_depth_map[$i] <= filesAtDepth*(100-percent)/100 )); then
result=$i
break;
fi
done
echo "$result"
}
depthMinus20Percent() {
echo "$(depthMinusPercent $1 20)"
}
depthMinus50Percent() {
echo "$(depthMinusPercent $1 50)"
}
depthPlusOne() {
depth=$1
if (( depth == depth_max_incremental_depth || depth == maxDepth )) ; then
echo "$maxDepth"
else
echo $(( depth + 1 ))
fi
}
function wait_and_get_exit_codes() {
children=("$@")
LAST_EXIT_CODE=0
for job in "${children[@]}"; do
CODE=0;
wait ${job} || CODE=$?
if [[ "${CODE}" != "0" ]]; then
LAST_EXIT_CODE=1;
fi
done
}
do_deep_scan() {
DEBUG_THREAD=0
depth_num=$1
scan_timeout=$2
depth_arg=""
[ "$depth_num" -ne "$maxDepthUnbounded" ] && depth_arg="-maxdepth $depth_num"
scanned_depth_msg+=" depth $depth_num"
is_last_depth_scan_timed_out=0
# will update dir_list on each scan, in case new shares have been added
dir_list=$(build_dir_list)
scan_start=$(date +%s%N)
children_pids=()
for i in $array $pools
do
{
for share_dir in $dir_list
do
dir_to_scan="$i/$share_dir"
# if lockfile removed, then don't do new finds
[ ! -f "$lockfile" ] && log "breaking scan due to exit request: ${dir_to_scan}" && continue
# If the directory does not exist on this disk, don't do recursive "directory scan"
[ ! -d "$dir_to_scan" ] && continue
current_time_nano=$(date +%s%N)
# +1 to timeout because this is an integer computation
remaining_time=$(( ((scan_timeout+1)*NANO_PR_SEC-(current_time_nano-scan_start) ) / NANO_PR_SEC ))
# Debug logging
# (( $DEBUG_THREAD )) && log "scanning $depth_num $dir_to_scan - remaining_time=$remaining_time - pid=$BASHPID"
#verbose_echo "$start_time_txt Executing $command $i/$share_dir $args $depth_arg"
if (( remaining_time > 0 )) ; then
# Perform a recursive "find" on /mnt/disk??/share, or /mnt/user/share, or /mnt/cache/share
if [ -f /bin/timeout ] ; then
# Stop scan after n seconds. Should actually decrease wait-duration based on previous shares scan-time
# Note timeout changes the pgid of its process, so cannot kill it using pgid
/bin/timeout $remaining_time $command "$dir_to_scan" $args $depth_arg >/dev/null 2>&1
else
$command "$dir_to_scan" $args $depth_arg >/dev/null 2>&1
fi
fi
done
} &
children_pids+=("$!")
if (( ! multithreaded_scan )) ; then
wait $!
fi
done
wait_and_get_exit_codes "${children_pids[@]}"
(( $DEBUG_THREAD )) && log "Finished all depth scan threads: ${children_pids[@]}"
if (( include_scan_of_user_share == 1 )) ; then
current_time_nano_disks_done=$(date +%s%N)
timepassed_disks_total=$(( (current_time_nano_disks_done - scan_start)/ NANO_PR_MS ))
i="/mnt/user"
# Note the we scan the user share sequentially to avoid running multiple scans on the same disk at a time where as the disks above are scanned concurrently
############################## Copied Above ############################## (ie. don't edit without copying)
for share_dir in $dir_list
do
dir_to_scan="$i/$share_dir"
# if lockfile removed, then don't do new finds
[ ! -f "$lockfile" ] && log "breaking scan due to exit request: ${dir_to_scan}" && continue
# If the directory does not exist on this disk, don't do recursive "directory scan"
[ ! -d "$dir_to_scan" ] && continue
current_time_nano=$(date +%s%N)
# +1 to timeout because this is an integer computation
remaining_time=$(( ((scan_timeout+1)*NANO_PR_SEC-(current_time_nano-scan_start) ) / NANO_PR_SEC ))
# Debug logging
# (( $DEBUG_THREAD )) && log "scanning $depth_num $dir_to_scan - remaining_time=$remaining_time - pid=$BASHPID"
#verbose_echo "$start_time_txt Executing $command $i/$share_dir $args $depth_arg"
if (( remaining_time > 0 )) ; then
# Perform a recursive "find" on /mnt/disk??/share, or /mnt/user/share, or /mnt/cache/share
if [ -f /bin/timeout ] ; then
# Stop scan after n seconds. Should actually decrease wait-duration based on previous shares scan-time
# Note timeout changes the pgid of its process, so cannot kill it using pgid
/bin/timeout $remaining_time $command "$dir_to_scan" $args $depth_arg >/dev/null 2>&1
else
$command "$dir_to_scan" $args $depth_arg >/dev/null 2>&1
fi
fi
done
############################## Copied Above END ##############################
timepassed_user_total=$(( ($(date +%s%N) - current_time_nano_disks_done) / NANO_PR_MS ))
logline_deep_scan_detailed_info=" (disks $(($timepassed_disks_total/1000))s + user $(($timepassed_user_total/1000))s)"
# log "total disk+$logline_deep_scan_detailed_info"
fi
current_time_nano=$(date +%s%N)
timepassed_total=$(( (current_time_nano - scan_start) ))
if [ $LAST_EXIT_CODE -ne 0 ] ; then
is_last_depth_scan_timed_out=1
scanned_depth_msg+="(timeout ${scan_timeout}s:Error=$LAST_EXIT_CODE)"
elif (( timepassed_total >= scan_timeout * NANO_PR_SEC )) ; then
is_last_depth_scan_timed_out=1
scanned_depth_msg+="(timeout ${scan_timeout}s)"
fi
}
# function: exists key in map
exists() {
if [ "$2" != in ]; then
echo 'Incorrect usage.'
echo 'Correct usage: exists {key} in {array}'
echo 'examlpe1: if exists $i in files_at_depth_map; then echo "It exists" ; fi'
echo 'examlpe1a: exists $i in files_at_depth_map && echo "It exists"'
echo 'examlpe2: if ! exists $i in files_at_depth_map; then echo "Note there" ; fi'
return
fi
eval '[ ${'$3'[$1]+muahaha} ]'
}
count_files() {
local depth_arg=""
[ "$1" -ne "$maxDepthUnbounded" ] && depth_arg="-maxdepth $1"
totalCount=0
for i in $array $pools; do
for share_dir in $dir_list ; do
dir_to_scan="$i/$share_dir"
if [ -d "$dir_to_scan" ] ; then
local thisDirCount=$(find $dir_to_scan -type f $depth_arg | wc -l)
totalCount=$((totalCount+thisDirCount))
fi
done
done
echo "$totalCount"
}
# does not work as function that echo result, missing cpu_last
# First cpu measurement will be wrong, missing last
update_cpu_usage() {
cpu_now=($(head -n1 /proc/stat))
# Get all columns but skip the first (which is the "cpu" string)
cpu_sum="${cpu_now[@]:1}"
# Replace the column seperator (space) with +
cpu_sum=$((${cpu_sum// /+}))
# Get the delta between two reads
cpu_delta=$((cpu_sum - cpu_last_sum))
# Get the idle time Delta
cpu_idle=$((cpu_now[4]- cpu_last[4]))
# Calc time spent working
cpu_used=$((cpu_delta - cpu_idle))
# Calc percentage
cpu_usage=$((100 * cpu_used / cpu_delta))
# Keep this as last for our next read
cpu_last=("${cpu_now[@]}")
cpu_last_sum=$cpu_sum
}
format_two_digit() {
echo "$(echo $1 | awk '{input=$1} END {printf "%2.0f", input}')"
}
# will update dir_list on each scan, in case new shares have been added
dir_list=$(build_dir_list)
if [ "$short_log" = "no" ] ; then
log_list="$dir_list"
else
log_list=$(echo "$dir_list" | wc -l)
log_list=$(echo $log_list " directories cached")
fi
if ((fixdepth == -1)) ; then
scan_type="adaptive"
scan_depth=$maxDepth
else
scan_type="fixed"
scan_depth=$fixdepth
fi
if (( scan_depth == 9999 )) ; then
scan_depth="none"
fi
if [ "$concise_log" = "no" ] ; then
syslog "Arguments=$commandargs"
syslog "Max Scan Secs=$max_seconds, Min Scan Secs=$min_seconds"
syslog "Scan Type=$scan_type"
if ((fixdepth == -1)) ; then
syslog "Min Scan Depth=$minDepth"
fi
syslog "Max Scan Depth=$scan_depth"
syslog "Use Command='$command $args'"
syslog "---------- Caching Directories ---------------"
# syslog "$(join , ${dir_list[@]})"
syslog "$log_list"
syslog "----------------------------------------------"
syslog "Setting Included dirs: $(join , ${include_array[@]})"
syslog "Setting Excluded dirs: $(join , ${exclude_array[@]})"
syslog "min_disk_idle_before_restarting_scan_sec=$min_disk_idle_before_restarting_scan_sec"
syslog "scan_timeout_sec_idle=$scan_timeout_sec_idle"
syslog "scan_timeout_sec_busy=$scan_timeout_sec_busy"
syslog "scan_timeout_sec_stable=$scan_timeout_sec_stable"
syslog "frequency_of_full_depth_scan_sec=$frequency_of_full_depth_scan_sec"
if (( include_scan_of_user_share == 1 )) ; then
syslog "Including /mnt/user in scan"
fi
else
echo "Arguments=$commandargs, Version=$version, Cache Pressure=$cache_pressure, Max Scan Secs=$max_seconds, Min Scan Secs=$min_seconds, Scan Type=$scan_type, Max Depth=$scan_depth, Use Command='$command $args'" | paste -s -d "," - | logger "-t$program_name"
echo "$log_list" | paste -s -d "," - | logger "-t$program_name"
fi
logLostCacheHeader
logCsvHeader
a=0
while test $a -lt $exclude_array_count
do
list=$(eval ls $array/"${exclude_array[$a]}" $(echo $pools|tr ' ' '\n'|awk '{print $1"\"/${exclude_array[$a]}\""}') 2>/dev/null)
if [ "$list" = "" ] ; then
syslogerror "ERROR: excluded directory '${exclude_array[$a]}' does not exist."
fi
a=$((a+1))
done
a=0
while test $a -lt $include_array_count
do
list=$(eval ls $array/"${include_array[$a]}" $(echo $pools|tr ' ' '\n'|awk '{print $1"\"/${include_array[$a]}\""}') 2>/dev/null)
if [ "$list" = "" ] ; then
syslogerror "ERROR: included directory '${include_array[$a]}' does not exist."
fi
a=$((a+1))
done
function get_scan_timeout() {
if ((fixdepth >= 0)) ; then
echo "${scan_timeout_sec_idle}"
elif (( mode == MODE_IDLE_RESCANNING || mode == MODE_STABLE_IDLE )) ; then
echo "${scan_timeout_sec_idle}"
elif (( mode == MODE_BUSY_RESCANNING )) ; then
echo "${scan_timeout_sec_busy}"
elif (( mode == MODE_STABLE )) ; then
echo "${scan_timeout_sec_stable}"
else
log "Error unknown mode '$mode'"
echo "${scan_timeout_sec_stable}"
fi
}
# Internal vars
# isPreviousMaxDepthComputed will be true(1) if we have reached the depth we currently think of as our max depth, ie. appliedDepth == appliedMaxDepth
# - appliedMaxDepth is computed once, and after that we always try to regain that depth, which would cause load on system, unless we wait for idle disks I suppose
depth_scan_counter=0
depth_success_idle_incr_counter=0
depth_success_busy_incr_counter=0
depth_slow_scan_counter=0
if ((fixdepth >= 0)) ; then
appliedDepth=$fixdepth
maxDepth=$fixdepth
isPreviousMaxDepthComputed=1
scan_timeout_sec=${scan_timeout_sec_idle}
else
appliedDepth=$minDepth
scan_timeout_sec=${scan_timeout_sec_busy}
isPreviousMaxDepthComputed=0
fi
# invariant appliedMaxDepthCurrent < appliedMaxDepth <= maxDepth
# appliedMaxDepthCurrent: Current stable set, will be increased after long disk idle
# appliedMaxDepth: Best seen appliedMaxDepth, reset once a week
# maxDepth: User configured max depth
appliedMaxDepth=$maxDepth
appliedMaxDepthCurrent=$appliedMaxDepth
last_scan_towards_max_depth=$(date +%s)
is_last_depth_scan_timed_out=0
prev_sleep_duration=0
next_sleep_duration=0
declare -A files_at_depth_map
{
log "cache_dirs started"
while [ -f "$lockfile" ]
do
if [ "$suspend_during_mover" = "yes" ] ; then
if [ -f /var/run/mover.pid ] ; then
if ps h $(cat /var/run/mover.pid) | grep mover >/dev/null 2>&1 ; then
log "Suspended during moving, now sleeping 10 seconds"
sleep 10
continue
fi
fi
fi
# always cache root dirs on each of the disks
for i in $array $pools
do
find $i -maxdepth 1 -noleaf >/dev/null 2>/dev/null
done
time_since_disk_access_before_scan_sec=$(fnc_time_since_last_disk_access)
############## Here the actual find is executed ################
start_time_nano=$(date +%s%N)
start_time_txt=$(date "+%Y.%m.%d %H:%M:%S")
scan_timeout_sec=$(get_scan_timeout)
scanned_depth_msg=""
# I tried rescan at lower depth if scan timed out, but it hurt cache, some depth levels were unattainable with the lower depth scan enabled, they must have evicted higher depth cache for some reason
do_deep_scan $appliedDepth $scan_timeout_sec
# Count number of files at depth, the first time depth is used
if ! exists "$appliedDepth" in files_at_depth_map ; then
files_at_depth_map[$appliedDepth]+="$(count_files $appliedDepth)"
if ((appliedDepth == maxDepth)) ; then
depth_max_incremental_depth=$(depthMinus20Percent $maxDepth)
#################################
# Debugging of functions below
# log "depth_max_incremental_depth=$depth_max_incremental_depth"
# # Debug logging of levels
# for ((i=1; i < depth_max_incremental_depth; i++)) ; do
# # bash need $ on $appliedDepth inside hashmap inside (())
# log "depthMinusOne($i)=$(depthMinusOne $i)"
# done
# log "depthMinusOne($maxDepth)=$(depthMinusOne $maxDepth)"
# for ((i=1; i < depth_max_incremental_depth; i++)) ; do
# # bash need $ on $appliedDepth inside hashmap inside (())
# log "depthMinus20Percent($i)=$(depthMinus20Percent $i)"
# done
# log "depthMinus20Percent($maxDepth)=$(depthMinus20Percent $maxDepth)"
# for ((i=1; i < depth_max_incremental_depth; i++)) ; do
# # bash need $ on $appliedDepth inside hashmap inside (())
# log "depthMinus50Percent($i)=$(depthMinus50Percent $i)"
# done
# log "depthMinus50Percent($maxDepth)=$(depthMinus50Percent $maxDepth)"
#################################
fi
fi
time_since_disk_access_after_scan_sec=$(fnc_time_since_last_disk_access)
end_time_nano=$(date +%s%N)
# track how long the recursive "directory scan" is taking. If it starts to take longer it must be
# because it has to read more from the physical disk. If so, adjust the timing to
# perform the directory scan more frequently.
elapsed_time=$(( end_time_nano-start_time_nano ))
elapsed_secs=$(( elapsed_time / NANO_PR_SEC ))
were_disks_idle_during_scan=$((time_since_disk_access_after_scan_sec>=elapsed_secs))
# Only update avg scan time when disks were idle during scan. This gives us ability to judge whether disks were accessed due to cache_dirs scan even if other processes access disks
if (( were_disks_idle_during_scan )) ; then
alen=${#avg[@]}
# Move all the counts up one position in the array.
for (( i = alen ; i > 0 ; i-- ))
do
[ $i -lt $window_array_length ] && avg[$((i+1))]=${avg[$i]}
done
# The newest will always be stored at index 1
avg[1]=$elapsed_time
# get the weighted average of the last $window_array_length loop passes
# more recent values count far more than older values.
tot_time=0
alen=${#avg[@]}
tot_count=0
for (( i = 1; i <= alen; i++ ))
do
weight=$(( alen - i + 1 ))
weight=$(( weight * 3 ))
tot_count=$(( tot_count + weight))
tot_time=$(( tot_time + avg[i] * weight ))
done
avg_elapsed_time=$((tot_time/tot_count))
elif [ $avg_elapsed_time -eq 0 ] ; then
avg_elapsed_time=$elapsed_time
fi
avg_elapsed_secs=$(( avg_elapsed_time / NANO_PR_SEC ))
# Only decrease sleep when non-idle scan, note avg is computed over scan with idle disks, but not necessary at current depth level
if (( !were_disks_idle_during_scan && avg_elapsed_time * 3 < elapsed_time && num_seconds > min_seconds )) ; then
num_seconds=$min_seconds
fi
if (( avg_elapsed_time + NANO_PR_SEC > elapsed_time && num_seconds < max_seconds )) ; then
num_seconds=$max_seconds
fi
is_slow_scan=0
is_depth_reduced=0
log_disk_access_msg=""
######### Update mode and hasBeenIdleLong ###
if ((fixdepth == -1)) ; then
(( time_since_disk_access_before_scan_sec >= min_disk_idle_before_restarting_scan_sec )) && hasBeenIdleLong=1 || hasBeenIdleLong=0
if (( depth_scan_counter >= min_no_scans_at_new_level )) ; then
# never change mode before having tried a few times to build cache pressure at level
if (( hasBeenIdleLong )) ; then
if (( mode == MODE_STABLE )) ; then
mode=$MODE_STABLE_IDLE
elif (( mode == MODE_BUSY_RESCANNING )) ; then
mode=$MODE_IDLE_RESCANNING
fi
elif (( time_since_disk_access_before_scan_sec == 0 )) ; then
if ((mode == MODE_IDLE_RESCANNING)) ; then
# We have slept a second, so if disks have not been idle for a second, it means they are busy again. It does not hurt if we move back and forth between the two modes
if (( appliedDepth <= 3 )) ; then
mode=$MODE_BUSY_RESCANNING
else
# It seems to work great to do all scanning work when we know system is idle, and stop immediately with the scanning of deeper levels when disks are not idle.
mode=$MODE_STABLE
fi
elif ((mode == MODE_STABLE_IDLE)) ; then
# It seems to work great to do all scanning work when we know system is idle, and stop immediately with the scanning of deeper levels when disks are not idle.
mode=$MODE_STABLE
fi
fi
fi
else
if (( time_since_disk_access_after_scan_sec >= 2 || avg_elapsed_secs + 2 >= elapsed_secs )) ; then
mode=$MODE_STABLE_IDLE
else
mode=$MODE_BUSY_RESCANNING
fi
# log "Fixed sleep time_since_disk_access_after_scan_sec($time_since_disk_access_after_scan_sec) >= 2 || avg_elapsed_secs($avg_elapsed_secs) + 2 >= elapsed_secs($elapsed_secs) => mode=$mode"
fi
current_time_sec=$(date +%s)
skip_sleep=0
if ((fixdepth == -1)) ; then
# Judge last scan based on duration and timeout: Increment success or failure counters
if ((were_disks_idle_during_scan)) ; then
log_disk_access_msg="Idle____________"
((depth_success_idle_incr_counter++))
depth_slow_scan_counter=0
elif (( elapsed_secs < slow_scan_time_limit )) ; then
# Semi-INVARIANT: ! is_last_depth_scan_timed_out becasue probably slow_scan_time_limit < scan_timeout
# build cache-pressure by repeating successfull search, and give time for checking for disk-access
if (( elapsed_time <= avg_elapsed_time + 2*NANO_PR_SEC )) ; then
# depth_slow_scan_counter because we suspect its a scan which didn't access disks, since scan time was as fast as usual.
depth_slow_scan_counter=0
log_disk_access_msg="NonIdleFast_____"
else
log_disk_access_msg="NonIdleSlowerAvg"
fi
((depth_success_busy_incr_counter++))
else
log_disk_access_msg="NonIdleTooSlow__"
is_slow_scan=1
((depth_slow_scan_counter++))
depth_success_idle_incr_counter=0
depth_success_busy_incr_counter=0
skip_sleep=1
fi
fi
update_cpu_usage
CPU="$(format_two_digit $cpu_usage)"
# Note elapsed_secs is an integer, so we need to recompute it from elapsed_time in the awk command below
avg_text=$(awk "BEGIN{ printf \"%05.2fs, wavg=%05.2fs\n\", ($elapsed_time/$NANO_PR_SEC), ($avg_elapsed_time/$NANO_PR_SEC) ; }")
log "$start_time_txt Executed $command in (${elapsed_secs}s)${logline_deep_scan_detailed_info} $avg_text ${log_disk_access_msg} $scanned_depth_msg slept ${next_sleep_duration}s Disks idle before/after scan ${time_since_disk_access_before_scan_sec}s/${time_since_disk_access_after_scan_sec}s Scan completed/timedOut counter cnt=$depth_scan_counter/$depth_success_idle_incr_counter/$depth_slow_scan_counter mode=$mode scan_tmo=${scan_timeout_sec}s maxCur=$appliedMaxDepthCurrent maxWeek=$appliedMaxDepth isMaxDepthComputed=$isPreviousMaxDepthComputed CPU=${CPU}%, filecount[$appliedDepth]=${files_at_depth_map[$appliedDepth]}"
logCsvSimple
if ((fixdepth == -1)) ; then
time_since_last_disk_access_sec=$(fnc_time_since_last_disk_access)
(( time_since_last_disk_access_sec >= min_disk_idle_before_restarting_scan_sec )) && hasBeenIdleLong=1 || hasBeenIdleLong=0
if (( mode == MODE_IDLE_RESCANNING)) ; then
no_slow_scans_decrease_depth=$no_slow_scans_decrease_depth_idle
elif (( mode == MODE_BUSY_RESCANNING)) ; then
no_slow_scans_decrease_depth=$no_slow_scans_decrease_depth_busy
else
no_slow_scans_decrease_depth=$no_slow_scans_decrease_depth_stable
fi
((depth_scan_counter++))
# appliedMaxDepthCurrent: Used when in mode MODE_BUSY_RESCANNING, and that mode is started when disks where idle during last scan. It has no effect in the other modes I believe.
# Now increment or decrement depth level based on counters
if (( mode != MODE_STABLE && (depth_success_idle_incr_counter >= no_idle_scans_increase_depth || depth_success_busy_incr_counter > no_busy_scans_increase_depth) || hasBeenIdleLong && depth_success_idle_incr_counter >= 1 )) ; then
if (( appliedDepth == maxDepth )) ; then
isPreviousMaxDepthComputed=1
fi
if (( appliedDepth < appliedMaxDepthCurrent || appliedDepth < appliedMaxDepth && (mode == MODE_IDLE_RESCANNING || mode == MODE_STABLE_IDLE) )) ; then
# Increment depth and check depth_max_incremental_depth: skip straight to maxDepth if deep enough, so we can start sleeping
appliedDepth=$(depthPlusOne $appliedDepth)
depth_slow_scan_counter=0
depth_success_idle_incr_counter=0
depth_success_busy_incr_counter=0
depth_scan_counter=0
if (( hasBeenIdleLong && appliedDepth < appliedMaxDepth )) ; then
mode=$MODE_IDLE_RESCANNING
fi
elif (( (appliedDepth == appliedMaxDepthCurrent && mode == MODE_BUSY_RESCANNING) || appliedDepth == appliedMaxDepth )) ; then
mode=$MODE_STABLE
fi
elif (( (appliedDepth > 0 && depth_slow_scan_counter >= no_slow_scans_decrease_depth || is_last_depth_scan_timed_out) && depth_scan_counter >= min_no_scans_at_new_level )) ; then
# Sometimes it takes a few scans to build cache pressure which is seen by first scan being very slow, second a bit slow third pretty fast. So never decrease before trying at least 3 scans at level
depth_slow_scan_counter=0
depth_success_idle_incr_counter=0
depth_success_busy_incr_counter=0
#don't reset 'depth_scan_counter=0' because we are decreasing level
# Reduce max-depth
appliedMaxDepthCurrent=$(depthMinusOne "$appliedDepth")
is_depth_reduced=1
if (( mode == MODE_STABLE )) ; then
appliedDepth=$(depthMinus50Percent "$appliedDepth")
else
appliedDepth=$(depthMinusOne "$appliedDepth")
if (( !isPreviousMaxDepthComputed && (mode == MODE_IDLE_RESCANNING || mode == MODE_STABLE_IDLE) )) ; then
# We were doing a scan during a time when disks have been idle, so system low was probably low. We take this to indicate this is the best depth the system can handle.
# Set max depth ceiling, which will be rechecked weekly. Move to stable mode, at one level below current level.
appliedMaxDepth=$appliedMaxDepthCurrent
isPreviousMaxDepthComputed=1
fi
mode=$MODE_STABLE
fi
elif (( were_disks_idle_during_scan && (mode == MODE_STABLE || mode == MODE_STABLE_IDLE) && appliedDepth < appliedMaxDepthCurrent )) ; then
mode=$MODE_BUSY_RESCANNING
fi
if (( appliedMaxDepthCurrent < appliedDepth )) ; then
appliedMaxDepthCurrent="$appliedDepth"
fi
# Weekly full scan: In case of reduced max depth, test if we should reset and try going deeper again
if (( current_time_sec > last_scan_towards_max_depth + frequency_of_full_depth_scan_sec && time_since_last_disk_access_sec >= min_disk_idle_before_restarting_scan_sec )) ; then
last_scan_towards_max_depth=$current_time_sec
if (( appliedMaxDepth < maxDepth )) ; then
log "Starting scheduled depth scan again after waiting ${frequency_of_full_depth_scan_sec}s - disks have been idle for ${time_since_last_disk_access_sec}s"
appliedMaxDepth=$maxDepth
isPreviousMaxDepthComputed=0
scan_timeout_sec=${scan_timeout_sec_idle}
fi
fi
if (( is_depth_reduced )); then
logLostCacheSimple 1
elif (( is_slow_scan )); then
logLostCacheSimple 0
fi
fi
(( (mode == MODE_STABLE || mode == MODE_STABLE_IDLE) && !is_last_depth_scan_timed_out )) && next_sleep_duration=$num_seconds || next_sleep_duration=1
# we only skip sleep when scan is taking long, so it cannot significantly change impact whether or not we sleep 1 sec. We skip sleep to help cache pressure to build
if ((!skip_sleep)) ; then
sleep ${next_sleep_duration}
fi
prev_sleep_duration=$next_sleep_duration
done
# This line will only be printed if for some odd reason the while loop terminates, without cache_dirs -q being executed (such as user deleting run-file)
log "cache_dirs stopped"
} &
# while loop was put into background, now disown it
# so it will continue to run when you log off
# to get it to stop, type: rm /var/lock/cache_dirs.LCK
background_pid=$!
echo $background_pid > "${lockfile}"
if [ $background = "no" ] ; then
# only way to get here is to remove the lock file or kill the background process shell with the while loop
trap "syslog '$program_name process $background_pid was terminated via trap'; rm -f $lockfile; killtree $background_pid -KILL 2>/dev/null; exit" INT TERM EXIT
wait
echo "Stopped"
else
syslogerror"$program_name process ID $background_pid started"
disown %%
fi
| true
|
4dbe321bd2f8305eed9d5a116fd575e45fe6445d
|
Shell
|
OwlinOhana/OperatingSystem
|
/Lab1/lab.sh
|
UTF-8
| 4,155
| 3.921875
| 4
|
[] |
no_license
|
#!/bin/bash
#В проекте должен обрабатываться аргумент "--help|-h" для вывода справки, в которой отображаются:
#Авторы;
#Все доступные аргументы;
#Краткое описание проекта;
#Примеры запуска.
IFS=$'\n'
echo "Доступные функции программы
-h - получить справку
-I - вывод сетевых интерфейсов
-U - отключение/включение интерфейса
-In - установка IP/Mask/Gateway для определённого интерфейса
-K - убийство процесса
-L - отображение сетевой статиститки
-e - exit"
while true
read var
do
case "$var" in
-h) echo "Доступные команды
-a -авторы
-ar - все доступны аргументы
-readme - краткое описание проекта
-example - примеры запуска "
read v
if [ -n $v ]
then
case "$v" in
-a) echo "
Пинов Даниил Игоревич
Есикова Анастасия Дмитриевна
Лепёхин Даниил Александрович"
;;
-ar) echo " -h -I -U -In -K -L -M -e "
;;
-readme) echo "Функционал программы включает в себя:
а)Вывод сетевых интерфейсов
б)Отключение/включение интерфейса
в)Установка IP/Mask/Gateway для определённого интерфейса
г)Убийство процесса на заданном порту
д)Отображение сетевой статиститки"
;;
-example) echo "Здесь что-то есть"
;;
-*) echo "Неизвестное действие"
exit 1
;;
esac
fi
;;
-I) ip link show
;;
-U) ip link show
echo "Отключить - d, вкючить - u"
read v
if [ -n $v ]
then
case "$v" in
-u) echo "Введите интерфейс, который хотите включить:"
read int
ifconfig $int up
;;
-d) echo "Введите интерфейс, который хотите отключить:"
read int
ifconfig $int down
;;
-*) echo "Неизвестное действие"
;;
esac
else exit 1
fi
;;
-In)
#ifconfig eth0 192.168.33.42 netmask 255.255.0.
#Измените два последних символа в MAC-адресе вашей сетевой карты.
#ifconfig eth0 hw ether 08:00:27:ab:67:XX
ifconfig
echo "Введите имя интерфейса сети "
read link
echo "M - изменить маску Ip - изменить IP G - изменить Gateway"
read v
if [ -n $v ]
then
case "$v" in
-M) echo "Введите маску "
read int
ifconfig $link netmask $int
;;
-Ip) echo "Введите новый IP"
read int
ifconfig $link $int
;;
-G) echo "Введите IP адрес шлюза, который нужно заменить:"
read int
ip route del default via $int dev $link
echo "Введите новый IP адрес шлюза:"
read int
ip route add default via $int dev $link
;;
-*) echo "Неизвестное действие"
;;
esac
else exit 1
fi
;;
-K)
netstat -tulpn
echo "Введите № порта "
read v
if [ -n $v ]
then
lsof -i:$v #Эта команда возвращает список открытых процессов на этом порту.
else exit 1
echo "Введите № процесса"
read proc
fi
if [ -n $proc ]
then
kill -9 $proc # насильственная смерть -9 #Чтобы освободить порт, убейте процесс, используя его(идентификатор процесса-75782)…
else exit 1
fi
;;
-L) #Отображение сетевой статистики https://itproffi.ru/otslezhivanie-sostoyaniya-seti-v-linux-komanda-netstat/
#https://itproffi.ru/otslezhivanie-sostoyaniya-seti-v-linux-komanda-netstat/
netstat #netstat -a | more ||-atu
;;
-e) return 0
;;
esac
done
| true
|
0f4f30fcd7d7553691571992b2b07331e1bae616
|
Shell
|
mhmtkptn/bashExamples
|
/src/processes/findProcessBeacon.sh
|
UTF-8
| 800
| 3.828125
| 4
|
[] |
no_license
|
#!/usr/bin/env bash
# $1: a string in the form of key=value
function dothis() {
for _env in $( ls /proc/*/environ )
do
if [ -r $_env ]
then
if ( grep "$1" $_env >/dev/null )
then
echo $_env | awk 'BEGIN {FS = "/"} {print $3}'
fi
fi
done
}
function run() {
dothis $1
}
function test() {
_HOURGLASS_=1 /usr/bin/env python -c "import time;time.sleep(1)" &
if [ -z $( dothis "_HOURGLASS_=1" ) ]
then
echo "failed to find beacon"
exit 1
fi
if [ ! -z $( dothis "_NOTEXISTING_=1" ) ]
then
echo "unexpected beacon"
exit 1
fi
}
if [ "$1" == "" ]
then
echo "need one argument"
exit 1
fi
if [ "$1" == "test" ]
then
test
else
run "$1"
fi
| true
|
ea2cdcbb5e46077e6b0f3c38c55569234020eca7
|
Shell
|
ghoso/linux-intro-sample
|
/sh/file_test.sh
|
UTF-8
| 186
| 3.09375
| 3
|
[] |
no_license
|
#!/bin/sh
if [ -f ./sed_text.txt ]
then
echo "sed_text.txt found!"
fi
if [ -x ./sed_text.txt ]
then
echo "sed_text.txt is executable!"
else
echo "sed_text.txt is not executable!"
fi
| true
|
c759ff03667da063382f5f2e9ad244a7a6fda9b8
|
Shell
|
towardsautonomy/install_instructions
|
/setup_ceres_solver.bash
|
UTF-8
| 1,244
| 3.203125
| 3
|
[] |
no_license
|
#!/bin/bash
# Install all the dependencies
# CMake
sudo apt-get install cmake
# google-glog + gflags
sudo apt-get install libgoogle-glog-dev
# BLAS & LAPACK
sudo apt-get install libatlas-base-dev
# Eigen3
sudo apt-get install libeigen3-dev
# SuiteSparse and CXSparse (optional)
# - If you want to build Ceres as a *static* library (the default)
# you can use the SuiteSparse package in the main Ubuntu package
# repository:
sudo apt-get install libsuitesparse-dev
# - However, if you want to build Ceres as a *shared* library, you must
# add the following PPA:
sudo add-apt-repository ppa:bzindovic/suitesparse-bugfix-1319687
sudo apt-get update
sudo apt-get install libsuitesparse-dev
# Download and install Eigen
git clone https://gitlab.com/libeigen/eigen.git
cd eigen
mkdir build
cd build
cmake ..
make -j4
sudo make install
cd ../../
# Get the ceres-solver package
git clone https://ceres-solver.googlesource.com/ceres-solver
# Install ceres-solver
cd ceres-solver
mkdir build
cd build
cmake ..
make test
# Optionally install Ceres, it can also be exported using CMake which
# allows Ceres to be used without requiring installation, see the documentation
# for the EXPORT_BUILD_DIR option for more information.
sudo make install
| true
|
0c6eec810ed9ae02cd3ac9218547537a8e0352cd
|
Shell
|
erkl-old/env
|
/arch/setup.sh
|
UTF-8
| 2,106
| 3.375
| 3
|
[] |
no_license
|
#!/usr/bin/env sh
set -ex
# Upgrade existing packages, then make sure we have everything we need.
sudo pacman -Syu
sudo pacman -S --needed --noconfirm \
libva \
libva-intel-driver \
mesa-libgl \
xf86-video-intel \
\
xorg-server \
extra/xorg-server-utils \
bspwm \
sxhkb \
urxvt \
\
curl \
openssh \
openssl \
tmux \
vim-minimal \
wget \
zsh \
# Decrypt SSH keys.
mkdir -p "${HOME}/.ssh"
openssl enc -aes-256-cbc -d -base64 -in "${HOME}/.env/keys/id_rsa.enc" -out "${HOME}/.ssh/id_rsa"
openssl enc -aes-256-cbc -d -base64 -in "${HOME}/.env/keys/id_rsa.pub.enc" -out "${HOME}/.ssh/id_rsa.pub"
chmod 0700 "${HOME}/.ssh"
chmod 0644 "${HOME}/.ssh/id_rsa.pub"
chmod 0600 "${HOME}/.ssh/id_rsa"
# Link the authorized_keys file to id_rsa.
ln -sf "${HOME}/.ssh/id_rsa.pub" "${HOME}/.ssh/authorized_keys"
# Create a sensible sshd_config file (the weird use of tee is necessary
# because sudo doesn't apply to output redirection).
sudo tee /etc/ssh/sshd_config > /dev/null <<EOF
AddressFamily any
Port 22
Protocol 2
StrictModes yes
# Disable root login.
PermitRootLogin no
# Disable passwords.
PasswordAuthentication no
ChallengeResponseAuthentication no
UsePAM no
# Hide annoying messages.
PrintMotd no
Banner no
EOF
# Start the SSH daemon.
sudo systemctl enable sshd.service
sudo systemctl start sshd.service
# Switch to zsh.
chsh -s /usr/bin/zsh
# Move into the ~/.env directory.
cd "${HOME}/.env"
# The bootstrap script sets the repository's origin using HTTPS;
# here we change it to SSL instead.
git remote set-url origin git@github.com:erkl/env.git
# Return to the previous directory.
cd -
| true
|
37145688d35d05b586599bdf560946eaf3db3ece
|
Shell
|
ilventu/aur-mirror
|
/bombono-dvd-git/PKGBUILD
|
UTF-8
| 754
| 2.984375
| 3
|
[] |
no_license
|
# Maintainer: archtux <antonio.arias99999@gmail.com>
pkgname=bombono-dvd-git
pkgver=20110226
pkgrel=1
pkgdesc="DVD authoring program with a nice and clean GUI."
url="http://www.bombono.org"
arch=('i686' 'x86_64')
license=('GPL2')
depends=('boost' 'dvd+rw-tools' 'dvdauthor' 'gtk2' 'gtkmm' 'graphicsmagick' 'libdvdread' 'libxml++' 'mjpegtools' 'toolame')
makedepends=('git' 'scons')
_gitroot=git://gitorious.org/bombono-dvd/bombono-dvd.git
_gitname=bombono-dvd
build() {
cd $srcdir
msg "Connecting to GIT server...."
if [ -d $srcdir/$_gitname ] ; then
cd $_gitname && git pull --rebase
else
git clone $_gitroot
fi
msg "GIT checkout done or server timeout"
msg "Starting installation..."
cd $_gitname
scons PREFIX=$pkgdir/usr install
}
| true
|
edb71ea5302513409b3953003bb2f2e6df5c512d
|
Shell
|
yevheniiii/front-end-training
|
/js_edu/how_to_use_git/.bash_profile
|
UTF-8
| 851
| 2.71875
| 3
|
[] |
no_license
|
# Enable tab completion
source ~/git-completion.bash
# colors!
green="\[\033[0;32m\]"
blue="\[\033[0;34m\]"
purple="\[\033[0;35m\]"
reset="\[\033[0m\]"
# Change command prompt
source ~/git-prompt.sh
export GIT_PS1_SHOWDIRTYSTATE=1
# '\u' adds the name of the current user to the prompt
# '\$(__git_ps1)' adds git-related stuff
# '\W' adds the name of the current directory
export PS1="$purple\u$green\$(__git_ps1)$blue \W $ $reset"
[ -f /usr/local/etc/bash_completion ] && . /usr/local/etc/bash_completion
#set lang to eng
$locale
LANG=pl_PL.utf8
LANGUAGE=
LC_CTYPE="pl_PL.utf8"
LC_NUMERIC="pl_PL.utf8"
LC_TIME="pl_PL.utf8"
LC_COLLATE="pl_PL.utf8"
LC_MONETARY="pl_PL.utf8"
LC_MESSAGES=C
LC_PAPER="pl_PL.utf8"
LC_NAME="pl_PL.utf8"
LC_ADDRESS="pl_PL.utf8"
LC_TELEPHONE="pl_PL.utf8"
LC_MEASUREMENT="pl_PL.utf8"
LC_IDENTIFICATION="pl_PL.utf8"
LC_ALL=
| true
|
bdd0f566b1acd7c083fbfbfec71ea647ee76e1f7
|
Shell
|
6Nokturnal6/novathesis
|
/Scripts/update-to-overleaf.sh
|
UTF-8
| 16,158
| 4.15625
| 4
|
[
"LPPL-1.3c"
] |
permissive
|
#!/bin/bash
####################################################################
# UPDATE NOVATHESIS IN GIT REPOSITORY
####################################################################
#===================================================================
# CHECK FOR NECESSARY COMMANDS
#===================================================================
type wget >& /dev/null && GET="wget -q -O"
type curl >& /dev/null && GET="curl -L -s -o"
type unzip >& /dev/null && UNZIP="unzip"
type tr >& /dev/null && TR="tr"
type cut >& /dev/null && CUT="cut"
type perl >& /dev/null && PERL="perl"
type git >& /dev/null && GIT="git"
if [[ -z "$UNZIP" ]]; then
echo "Did not find 'unzip' in your computer! Aborting..."
exit 1
fi
if [[ -z "$GET" ]]; then
echo "Did not find neither 'curl' nor 'wget' in your computer! Aborting..."
exit 1
fi
if [[ -z "$TR" ]]; then
echo "Did not find 'tr' in your computer! Aborting..."
exit 1
fi
if [[ -z "$CUT" ]]; then
echo "Did not find 'cut' in your computer! Aborting..."
exit 1
fi
if [[ -z "$PERL" ]]; then
echo "Did not find 'perl' in your computer! Aborting..."
exit 1
fi
if [[ -z "$GIT" ]]; then
echo "Did not find 'git' in your computer! Aborting..."
exit 1
fi
#===================================================================
# MAIN CONFIGURATION VARIABLES
#===================================================================
# NTURL="https://github.com/joaomlourenco/novathesis.git"
ZIPURL="https://github.com/joaomlourenco/novathesis/zipball/master"
OVBASE="https://git.overleaf.com"
#===================================================================
# PROCESS COMMAND LINE ARGUMENTS
#===================================================================
function usage() {
echo "Usage: $(basename $0) [-q] [-k] [-l] [-s school] [-p] [-f] [-z url] [-t temp_dir] <repo_url>"
echo "-q quiet/silent operation"
echo "-k keep Overleaf repository"
echo "-l stay local and do not upload commit to Overleaf (implies -k)"
echo "-s <school> keep only <school> and remove definitions for all the other schools"
echo "-p main patching (safe)"
echo "-f fine patching (dangerous)"
echo "-r skip download!"
echo "-z <URL> alternative URL for the base NOVAthesis repository"
echo "-t <dir> use <temp-dir> as a temporary directory"
echo "<repo_url> repository to be updated (if not a complete URL defaults to Overleaf)"
exit 1
}
while getopts ":qkls:pfrz:t:" opt; do
case ${opt} in
q ) # quiet/silent operation
QUIET="--quiet"
;;
k ) # keep Overleaf repository
KEEP="true"
;;
l ) # stay local and do not upload commit to Overleaf (implies -k)
KEEP="true"
LOCAL="true"
;;
s ) # keep only <school> and remove definitions for all the other schools
SCHOOL="$OPTARG"
;;
p ) # main patching (safe)
PATCH="true"
;;
f ) # fine patching (dangerous)
FINEPATCH="true"
;;
r ) # retry… skip download!
RETRY="true"
;;
z ) # alternative URL for the base NOVAthesis repository
ZIPURL="$OPTARG"
;;
t ) # use <temp-dir> as a temporary directory
UPDTMPDIR="$OPTARG"
;;
esac
done
shift $((OPTIND -1))
#============================================================
# DOWNLOADING
#============================================================
if [[ -z "$RETRY" ]]; then
# must have one and only one paramenter
[[ $# -eq 1 ]] || usage
if [[ $1 =~ "/" ]]; then
REPOURL=$1
else
REPOURL=$OVBASE/$1
fi
echo Getting NOVAthesis from: $ZIPURL
echo Updating repository at: $REPOURL
if [[ -z "$UPDTMPDIR" ]]; then
UPDTMPDIR="$(mktemp -d ./temp.XXXXXX)"
fi
echo Using temporary directory: $UPDTMPDIR
cd "$UPDTMPDIR"
# Cloning repository in parallel with downloading ZIP file
echo Downloading…
# Cloning/updating the user repository
REPO="$(echo $REPOURL | sed -e 's,.*/,,' -e 's/\.git$//')"
if [[ ! -d "$REPO" ]]; then
git clone $QUIET "$REPOURL"&
CLONEPID=$!
else
git pull $QUIET&
CLONEPID=$!
fi
# Download the novathesis template as a ZIP
NTDIR="novathesis"
if [[ ! -f "$NTDIR.zip" ]]; then
$GET $NTDIR.zip $ZIPURL
if [[ $? -ne 0 ]]; then
echo "Error getting NOVAthesis from $ZIPURL! Aborting..."
exit 1
fi
fi
if [[ ! -d "$NTDIR" ]]; then
$UNZIP -qq $NTDIR.zip
mv joaomlourenco-novathesis-* $NTDIR
fi
# Wait for clone operation to finish
if ! wait $CLONEPID; then
# echo $(pwd)
echo "Error getting Overleaf project from $REPOURL! Aborting..."
exit 1
fi
#============================================================
# For safety make a copy of user's repo
cp -r $REPO new-$REPO
#============================================================
cd new-$REPO
#============================================================
# Remove “novathesis-files” and replace with “NOVAthesisFiles”
echo Getting the new “NOVAthesisFiles”
cp -r ../$NTDIR/NOVAthesisFiles .
# Get remainder of relevant files
echo "Getting 'novathesis.cls'"
cp ../$NTDIR/novathesis.cls .
TVER=$(fgrep Version template.tex | $CUT -d '[' -f 2 | $CUT -d '.' -f 1)
case "$TVER" in
4) echo "v4.x of 'template.tex' found! Saving it in 'template-ORIG.tex' and getting new version"
mv texmplate.tex texmplate-ORIG.tex && cp ../$NTDIR/template.tex .
;;
5) echo "v5.x of 'template.tex' found! Keeping it and saving new version as 'template-NEW.tex'"
cp ../$NTDIR/template.tex ./template-NEW.tex
;;
*) echo "'template.tex' not found or invalid version! Aborting..."
exit 1
;;
esac
# Clean legacy files
rm -rf novathesis-files Examples LICENSE README.md Scripts/ changelog.txt template.tdf main.pdf dissertation.pdf
fi # -z "$RETRY"
#============================================================
# CLWAN SCHOOLS
#============================================================
# Clean unused novathesis schools if -s is given
if [[ -n "$SCHOOL" ]]; then
# Validate school
if [[ ! -d "NOVAthesisFiles/Schools/$SCHOOL" ]]; then
echo "Invalid school: $SCHOOL! Aborting..."
exit 1
fi
echo "Removing all schools except $SCHOOL"
SD=$(dirname $SCHOOL)
SF=$(basename $SCHOOL)
# save school's conf files to keep and delete others
mv NOVAthesisFiles/Schools/$SCHOOL .
rm -rf NOVAthesisFiles/Schools
# restore saveed school's conf files
mkdir -p NOVAthesisFiles/Schools/$SD
mv ./$SF NOVAthesisFiles/Schools/$SD
fi # -n "$SCHOOL"
#============================================================
# PATCHING FILES from 4.x to 5.x (safe operation)
#============================================================
if [[ -n "$PATCH" ]]; then
#============================================================
# Patch begin/end in files ”quote”, ”dedicatory” and “acknowledgements”
echo 'Patching “quote.tex”, “dedicatory.tex” and “acknowledgements.tex”'
for i in quote dedicatory acknowledgements; do
if [[ -f "Chapters/$i.tex" ]]; then
$PERL -pi -e "s,\\\\end$i,\\\\end{nt$i}," Chapters/$i.tex
$PERL -pi -e "s,\\\\$i,\\\\begin{nt$i}," Chapters/$i.tex
fi
done
if [[ -f Chapters/acknowledgements.tex ]]; then
fgrep "\end{ntacknowledgements}" Chapters/acknowledgements.tex || ( (echo; echo "\\end{ntacknowledgements}") >> Chapters/acknowledgements.tex)
fi
fi # "$$PATCH" = "true"
#============================================================
# FINE PATCHING FILES - part 1 (template.tex)
#============================================================
INFILE=template-ORIG.tex
OUTFILE=template.tex
if [[ -n "$FINEPATCH" && -f "$INFILE" ]]; then
TVER=$(fgrep Version $INFILE | $CUT -d '[' -f 2 | $CUT -d '.' -f 1)
case "$TVER" in
4) echo "v4.x found in $INFILE! Patching!"
;;
5) echo "v5.x found in $INFILE! Skipping!"
FINEPATCH=""
;;
*) echo "'template.tex' not found or invalid version! Aborting..."
exit 1
;;
esac
fi
#============================================================
# FINE PATCHING FILES - part 2 (template.tex)
#============================================================
if [[ -n "$FINEPATCH" ]]; then
#------------------------------------------------------------
# Patching template.tex from template-ORIG.tex
INFILE=template-ORIG.tex
OUTFILE=template.tex
echo "Fine patching ($INFILE => $OUTFILE)"
#------------------------------------------------------------
# Patch the class options
CLASS_OPTIONS_TO_IMPORT="docdegree school lang printcommittee"
# echo "Importing class options [$CLASS_OPTIONS_TO_IMPORT]"
for i in $CLASS_OPTIONS_TO_IMPORT; do
INREGEX="^\s*($i)=([^ ,]*).*$"
# OUTREGEX="\\\\ntsetup{$i=$VAL"
OPT=$i
VAL=$(cat $INFILE | $PERL -ne "s/$INREGEX/\2/ and print $1")
echo "Option $OPT=$VAL..."
$PERL -pi -e "s|%* *\\\\ntsetup\{$i=.*\}|\\\\ntsetup\{$i=$VAL\}|" $OUTFILE
done
#------------------------------------------------------------
# Patch the title
TITLE=$(grep "^\\\\\<title\>" $INFILE | $PERL -p -e "s|^\\\\title\[(.*)\].*|\1|")
[[ -z "$TITLE" ]] && TITLE=$(grep "^[^%]*\\\\\<title\>" $INFILE | $PERL -p -e "s|^\\\\title.*\{(.*)\}|\1|")
if [[ -n "$TITLE" ]]; then
echo Setting title=$TITLE
TITLE=$(echo $TITLE | $PERL -p -e 's/\\/\\\\/g')
$PERL -pi -e "s|^%* *\\\\nttitle\{.*\}|\\\\nttitle\{$TITLE\}|" $OUTFILE
fi
#------------------------------------------------------------
# Patching: majorfield, specialization
ALLTARGETS="majorfield specialization"
for TARGET in $ALLTARGETS; do
grep "^[^%]*\\\\\<${TARGET}\>" $INFILE |
$PERL -pe "s|.*\\${TARGET}\[(.*)\]=\{(.*)\}|\1\t\2|" |
while read l m; do
echo "Setting $TARGET($l)=$m"
$PERL -pi -e "s|^\\\\nt${TARGET}\($l\)\{.*\}|\\\\nt${TARGET}\($l\)\{$m\}|" $OUTFILE
done
done
#------------------------------------------------------------
# Patching: authorname, authordegree, datemonth, dateyear
ALLTARGETS="authorname authordegree datemonth dateyear"
for TARGET in $ALLTARGETS; do
VAL=$(grep "^[^%]*\\\\\<${TARGET}\>" $INFILE | $PERL -pe "s|\\\\\b${TARGET}\b(.*)|\1|")
echo "Setting $TARGET=$VAL"
$PERL -pi -e "s|^\\\\nt${TARGET}.*|\\\\nt${TARGET}${VAL}|" $OUTFILE
done
#------------------------------------------------------------
# Patching: adviser, coadviser
ALLTARGETS="adviser coadviser"
for TARGET in $ALLTARGETS; do
grep "^[^%]*\\\\\<${TARGET}\>" $INFILE | $PERL -pe "s|\\\\\b${TARGET}\b(.*)|\1|; s|\}\{|, |g; s,\\\\|&,,g" |
while read n; do
echo "Setting $TARGET=$n"
$PERL -i -pe "\$done||= s|^.*\\\\ntaddperson\{${TARGET}\}.*Adviser Name.*|\\\\ntaddperson\{${TARGET}\}$n|" $OUTFILE
done
done
#------------------------------------------------------------
# Patching abstract
ALLTARGETS="abstract"
for TARGET in $ALLTARGETS; do
CHAPTARGETREGEX="(%\s*syntax:\s+\\\\ntaddfile\{${TARGET}\}.*)"
CHAPBASEREGEX="(%\s*)?\\\\ntaddfile\{${TARGET}\}.*\n"
VAL=($(fgrep "${TARGET}file" $INFILE | grep -v '^%' | $PERL -pe "s/\\\\${TARGET}file\[(.*)\]\{(.*)\}.*/\1+\2/" | xargs))
len=${#VAL[@]}
# echo $TARGET $len
# remove example block
$PERL -pi -e "s/^${CHAPBASEREGEX}//" $OUTFILE
# add new block
for (( i=$len-1; i>=0; i-- )); do
echo "Adding ${TARGET}=${VAL[$i]}"
L=$(echo ${VAL[$i]} | cut -d '+' -f 1)
F=$(echo ${VAL[$i]} | cut -d '+' -f 2)
$PERL -pi -e "s/^${CHAPTARGETREGEX}/\1\n\\\\ntaddfile\{${TARGET}\}\[$L\]\{$F\}/" $OUTFILE
done
done
#------------------------------------------------------------
# Patching glossaries
ALLTARGETS="glossary acronyms symbols"
for TARGET in $ALLTARGETS; do
CHAPTARGETREGEX="(%\s*syntax:\s+\\\\ntaddfile\{glossaries\}.*)"
CHAPBASEREGEX="(%\s*)?\\\\ntaddfile\{glossaries\}\[${TARGET}\].*\n"
VAL=($(fgrep "${TARGET}file" $INFILE | grep -v '^%' | $PERL -pe "s/\\\\${TARGET}file\{(.*)\}.*/\1/" | xargs))
len=${#VAL[@]}
# echo $TARGET $len
# remove example block
$PERL -pi -e "s/^${CHAPBASEREGEX}//" $OUTFILE
# add new block
for (( i=$len-1; i>=0; i-- )); do
echo "Adding ${TARGET}=${VAL[$i]}"
$PERL -pi -e "s/^${CHAPTARGETREGEX}/\1\n\\\\ntaddfile\{glossaries\}\[${TARGET}\]\{${VAL[@]}\}/" $OUTFILE
done
done
#------------------------------------------------------------
# Patching chapter, appendix, annex, aftercover
ALLTARGETS="chapter appendix annex aftercover"
for TARGET in $ALLTARGETS; do
CHAPTARGETREGEX="(%\s*syntax:\s+\\\\ntaddfile\{${TARGET}\}.*)"
CHAPBASEREGEX="(%\s*)?\\\\ntaddfile\{${TARGET}\}.*\n"
VAL=($(fgrep "\\${TARGET}file" $INFILE | fgrep -v "%" | cut -d '{' -f 2 | cut -d '}' -f 1 | xargs))
len=${#VAL[@]}
# remove example block
$PERL -pi -e "s/^${CHAPBASEREGEX}//" $OUTFILE
# add new block
for (( i=$len-1; i>=0; i-- )); do
echo "Adding ${TARGET}=${VAL[$i]}"
$PERL -pi -e "s/^${CHAPTARGETREGEX}/\1\n\\\\ntaddfile\{${TARGET}\}\{${VAL[$i]}\}/" $OUTFILE
done
done
#------------------------------------------------------------
# Patching bib
ALLTARGETS="bib"
for TARGET in $ALLTARGETS; do
CHAPTARGETREGEX="(%\s*syntax:\s+\\\\ntaddfile\{${TARGET}\}.*)"
CHAPBASEREGEX="(%\s*)?\\\\ntaddfile\{${TARGET}\}.*\n"
VAL=($(fgrep "\\add${TARGET}file" $INFILE | fgrep -v "%" | cut -d '{' -f 2 | cut -d '}' -f 1 | xargs))
len=${#VAL[@]}
# remove example block
$PERL -pi -e "s/^${CHAPBASEREGEX}//" $OUTFILE
# add new block
for (( i=$len-1; i>=0; i-- )); do
echo "Adding ${TARGET}=${VAL[$i]}"
$PERL -pi -e "s/^${CHAPTARGETREGEX}/\1\n\\\\ntaddfile\{${TARGET}\}\{${VAL[$i]}\}/" $OUTFILE
done
done
fi # -n "$FINEPATCH"
#============================================================
# Cleaning up
#============================================================
if [[ -n "$LOCAL" ]]; then
echo Keeping local... exiting!
exit 0
fi
cd ../..
if [[ -n "$KEEP" ]]; then
echo "Keeping USER's repository $REPO"
mv $UPDTMPDIR/$REPO .
fi
rm -rf "$UPDTMPDIR"
exit
# echo "Patching \"$OUTFILE\" with info from \"$INFILE\""
# CLASS_OPTIONS_TO_IMPORT="docdegree school lang printcommittee"
# echo "Importing class options [$OPTIONS_TO_IMPORT]"
# for i in $CLASS_OPTIONS_TO_IMPORT; do
# INREGEX="^\s*($i)=([^ ,]*).*$"
# # OUTREGEX="\\\\ntsetup{$i=$VAL"
# OPT=$i
# VAL=$(cat $INFILE | $PERL -ne "s/$INREGEX/\2/ and print $1")
# echo Activating $OPT=$VAL...
# $PERL -pi -e "s|%* *\\\\ntsetup{$i=.*}|\\\\ntsetup{$i=$VAL}|" $OUTFILE
# done
#
# RX_NAME="title"; RX_INF_IN="^\\\\title(\[(.*)\])?{(.*)}\s$>"; RX_OUTF_IN]=""; RX_OUTF_OUT=""
# for i in {1..20}; do
# VAR=REGEX$i
# echo $VAR=${REGEX1[name]}
# done
#
#
#
# TITLE=$(grep "^\\\\\<title\>" $INFILE | $PERL -p -e "s|^\\\\title\[(.*)\].*|\1|")
# [[ -z "$TITLE" ]] && TITLE=$(grep "^\\\\\<title\>" $INFILE | $PERL -p -e "s|^\\\\title.*{(.*)}|\1|")
# if [[ -n "$TITLE" ]]; then
# echo Setting title to [$TITLE]
# TITLE=$(echo $TITLE | $PERL -p -e 's/\\/\\\\/g')
# $PERL -pi -e "s|^%* *\\\\nttitle{.*}|\\\\nttitle{$TITLE}|" main.tex
# fi
# AUTHOR=$(grep "^\\\\\<authorname\>" $INFILE)
# if [[ -n "$AUTHOR" ]]; then
# AUTHORGENDER=$(fgrep "\authorname" $INFILE | $PERL -p -e "s/\\\\authorname\[(.)\].*/\1/")
# AUTHORLONGNAME=$(fgrep "\authorname" $INFILE | $PERL -p -e "s/\\\\authorname\[.\]{(.*)}{.*}/\1/")
# AUTHORSHORTNAME=$(fgrep "\authorname" $INFILE | $PERL -p -e "s/\\\\authorname\[.\]{.*}{(.*)}/\1/")
# echo Setting author info to [$AUTHORGENDER] [$AUTHORLONGNAME] [$AUTHORLONGNAME]
# $PERL -pi -e "s/%* *\\\\ntauthorname\[.\]{.*}{.*}/\\\\ntauthorname[$AUTHORGENDER]{$AUTHORLONGNAME}{$AUTHORLONGNAME}/" main.tex
# fi
# AUTHORDEGHREE=$(grep "^\\\\\<authordegree\>" $INFILE | cut -d '{' -f 2 | cut -d '}' -f 1)
# if [[ -n "$AUTHORDEGHREE" ]]; then
# echo Setting author degree info to [$AUTHORDEGHREE]
# $PERL -pi -e "s/%* *\\\\ntauthordegree{(.*)}/\\\\ntauthordegree{$AUTHORDEGHREE}/" main.tex
# fi
#
# echo Remember to setup manually the biblatex options...
#
# if [[ -z "$LOCAL" ]]; then
# echo "Committing and pushing new version"
# git add -A . # Add all files to git
# V=$(fgrep "%% Version" main.tex | cut -d '[' -f 2 | cut -d ']' -f 1)
# git commit $QUIET -m "Updated template NOVAthesis to version $V"
# git push
# fi
cd ..
# Clean temp directory
cd ..
if [[ -n "$KEEP" ]]; then
echo "Keeping Overleaf repository /$REPO"
mv $UPDTMPDIR/$REPO .
fi
rm -rf "$UPDTMPDIR"
| true
|
b7cefe72f65a9a12707fda7703bb497d13591fb1
|
Shell
|
HuijingHei/jenkinsHenryWang
|
/ProvisionVM/build.sh
|
UTF-8
| 2,399
| 3.734375
| 4
|
[
"MIT"
] |
permissive
|
#!/bin/bash
function GetInfo()
{
local ci=$1
local taskUrl=$2
local brewAPI=$3
# get package name
_PKG_NAME=$(echo ${ci} | jq -r '.info.request[0]')
PKG_NAME=$(basename $_PKG_NAME | awk -F'#' '{print $1}')
# get task id
TASK_ID=$(echo ${ci} | jq -r '.info.id')
[ "x$TASK_ID" == "x" ] && exit 100
# get scratch
SCRATCH=$(echo ${ci} | jq -r '.info.request[2].scratch')
[ "x$SCRATCH" == "x" ] && SCRATCH="false"
file="./taskinfoOutput.txt"
curl -s --retry 5 --insecure ${taskUrl}${TASK_ID} > $file
# get issuer
ISSUER=`grep '<a href=\"userinfo?userID=' $file | cut -d '>' -f 2 | cut -d '<' -f 1`
# get NVR
NVR=`grep '<th>Build</th><td>' $file | cut -d '>' -f 5 | cut -d '<' -f 1`
# If NVR is empty, set as rpm name
if [ "x$NVR" == "x" ]; then
# get package brew url
URL_LIST=`python3 docker/brew.py $PKG_NAME $brewAPI --id $TASK_ID --arch x86_64`
for i in $URL_LIST
do
_hv=`echo $i | grep $PKG_NAME | grep -v $PKG_NAME-license`
if [ "x$_hv" != "x" ]; then
break
fi
done
NVR=`basename $_hv | sed 's/.x86_64.rpm//g'`
else
URL_LIST=`python3 docker/brew.py $NVR $brewAPI --id $TASK_ID --arch x86_64`
fi
THREAD_ID=`echo $NVR | md5sum | awk '{print $1}'`
}
# main script
if [ $# -ne 3 ]; then
echo "Usage: $0 ${CI_MESSAGE} ${TASK_URL_PRI} ${BREW_API}"
exit 100
fi
CI_MESSAGE=$1
TASK_URL_PRI=$2
BREW_API=$3
TASK_ID=""
SCRATCH=""
ISSUER=""
NVR=""
URL_LIST=""
THREAD_ID=""
GetInfo "$CI_MESSAGE" $TASK_URL_PRI $BREW_API
vars="./vars.properties"
[ -f $vars ] && rm -rf $vars
touch $vars
[ "x$TASK_ID" != "x" ] && ( echo "TASK_ID=$TASK_ID" >> $vars ) || (echo "ERROR: TASK_ID is empty"; exit 100)
[ "x$SCRATCH" != "x" ] && ( echo "SCRATCH=$SCRATCH" >> $vars ) || (echo "ERROR: SCRATCH is empty"; exit 100)
[ "x$ISSUER" != "x" ] && ( echo "ISSUER=$ISSUER" >> $vars ) || (echo "ERROR: ISSUER is empty"; exit 100)
[ "x$NVR" != "x" ] && ( echo "NVR=$NVR" >> $vars ) || (echo "ERROR: NVR is empty"; exit 100)
[ "x$URL_LIST" != "x" ] && ( echo "URL_LIST=\"$URL_LIST\"" >> $vars ) || (echo "ERROR: URL_LIST is empty"; exit 100)
[ "x$THREAD_ID" != "x" ] && ( echo "THREAD_ID=$THREAD_ID" >> $vars ) || (echo "ERROR: THREAD_ID is empty"; exit 100)
echo "==========="
cat $vars
echo "==========="
| true
|
61ef8345e4be89e3ff036b54078f16b51c2410f5
|
Shell
|
Mondobot/Post_office
|
/testgen/test.sh
|
UTF-8
| 337
| 3.515625
| 4
|
[] |
no_license
|
#!/bin/bash
# Se ruleza asa:
# sh test.sh <nume_executabil> <nr_de_teste>
# numele executabilului (main / tema1 / a.out etc.)
EXEC=$1
# numarul de teste
N_TESTS=$2
# Se ruleaza executabilul si se genereaza fisierele de output
# test1.out, test2.out etc.
for i in $(seq 1 $N_TESTS)
do
./$EXEC "test"$i".in" > "test"$i".out"
done
| true
|
ae011f483038cb681d8932ae9ec8de66acff84bb
|
Shell
|
jiro4989/dotfiles
|
/bin/mp42gif
|
UTF-8
| 865
| 4.03125
| 4
|
[
"MIT"
] |
permissive
|
#!/bin/bash
set -eu
type ffmpeg > /dev/null 2>&1
ret=$?
if [ $ret -ne 0 ]; then
cat << EOS >&2
Need ffmpeg command in PATH
How to install on Ubuntu.
$ sudo apt install -y ffmpeg
EOS
exit 1
fi
usage() {
cat << EOS
a
EOS
}
input_file=$1
out_file="$(dirname "$input_file")/$(basename "$input_file" .mp4).gif"
echo "リサイズ後の縦幅を入力してください。"
echo "横幅は縦幅に合わせて自動で調整されます。"
read -r -p "? " height
echo
echo "フレームレートを指定してください。"
read -r -p "? " rate
echo
echo "変換処理を開始します。この処理には時間がかかります..."
ffmpeg -i "$input_file" -vf scale=-1:"$height" -r "$rate" "$out_file"
cat << EOS
----------------------------------------------------------
画像の変換が完了しました。
成果物:
$out_file
EOS
| true
|
c5fe605300a02ba7083005e945898aa13b49a4f0
|
Shell
|
grycap/HPCmeetsDocker
|
/mcc-setup/removenode.d/01slurm
|
UTF-8
| 279
| 2.796875
| 3
|
[
"Apache-2.0"
] |
permissive
|
#!/bin/bash
CONTAINERNAME="$1"
IPADDR="$2"
shift
shift
while [ $# -gt 0 ]; do
NODENAME="$1"
shift
scontrol update NodeName=$NODENAME state=down reason="powered off by HPCmeetsDocker"
if (($?==0)); then
exit 0
fi
done
exit 1
| true
|
77c45ddeef3de4572cfe1b1561c5c71ce5d6b7f2
|
Shell
|
ThomasKeralla/Algorithms
|
/runsort/solution/RunSortTester.sh
|
UTF-8
| 409
| 3.671875
| 4
|
[] |
no_license
|
#!/bin/bash
set -e
filename=RunSort
if [[ $filename.java -ot $filename.class ]];
then echo -e "Already compiled $filename ...";
else
echo -e "Compiling $filename: ..."
javac $filename.java
fi
testFiles="tiny.txt tibny2.txt words3.txt"
for inputFile in $testFiles; do
echo -e "\nExecuting: java $filename < $inputFile\n"
java $filename < ../data/$inputFile
done
echo -e "\nDone testing $filename"
| true
|
208eaba8868405332478d917ef73194071e57839
|
Shell
|
weidagang/tips
|
/tips.sh
|
UTF-8
| 741
| 4.25
| 4
|
[
"MIT"
] |
permissive
|
#!/usr/bin/env bash
PROG_DIR=$(dirname $0)
PROG_NAME=$(basename $0)
function usage {
echo "Usage: $PROG_NAME [category...] <name>"
echo "Example:"
echo " 1) $PROG_NAME cal"
echo " 2) $PROG_NAME git checkout"
exit 1;
}
function no_tips {
echo "No tips found for \"$@\""
exit 2
}
# validate command line arguments
if [[ $# -lt 1 || $1 == "-h" || $1 == "--help" || $1 == "-help" ]]; then
usage
fi
# step down to the subfolders
i=0
dir=$PROG_DIR/data
for arg in $@; do
((i++))
if [[ $i < $# ]]; then #directory
dir=$dir/$arg
[[ -d $dir ]] || no_tips $@
else #file
tips_file=$dir/${arg}.txt
[[ -r $tips_file ]] && cat $tips_file || no_tips $@
fi
done
| true
|
f4133a6e7925b3a8be5d93e84dab29bac38aa05a
|
Shell
|
Niil78/CajaDeMarrones
|
/Paquetes BlackArch/cewl/PKGBUILD
|
UTF-8
| 1,239
| 2.6875
| 3
|
[] |
no_license
|
# This file is part of BlackArch Linux ( https://www.blackarch.org/ ).
# See COPYING for license details.
pkgname=cewl
pkgver=61.4bec19b
pkgrel=1
groups=('blackarch' 'blackarch-automation' 'blackarch-cracker')
pkgdesc='A custom word list generator'
arch=('any')
url="http://www.digininja.org/projects/cewl.php"
license=('CCPL')
depends=('ruby2.3')
makedepends=('git' 'ruby2.3-bundler')
source=('git+https://github.com/digininja/CeWL.git')
install='cewl.install'
sha512sums=('SKIP')
pkgver() {
cd CeWL
echo $(git rev-list --count HEAD).$(git rev-parse --short HEAD)
}
prepare() {
cd CeWL
sed -i "s|require './cewl_lib'|require '/usr/share/cewl/cewl_lib'|g" cewl.rb
}
package() {
cd CeWL
install -dm 755 "$pkgdir/usr/bin"
install -dm 755 "$pkgdir/usr/share/$pkgname"
install -Dm 644 README "$pkgdir/usr/share/doc/$pkgname/README"
rm README
cp -a * "$pkgdir/usr/share/$pkgname"
cat > "$pkgdir/usr/bin/$pkgname" << EOF
#!/bin/sh
exec ruby-2.3 /usr/share/$pkgname/cewl.rb "\$@"
EOF
chmod +x "$pkgdir/usr/bin/$pkgname"
cat > "$pkgdir/usr/bin/cewl-fab" << EOF
#!/bin/sh
exec ruby-2.3 /usr/share/$pkgname/fab.rb "\$@"
EOF
chmod +x "$pkgdir/usr/bin/cewl-fab"
rm "$pkgdir/usr/share/cewl/Gemfile.lock"
}
| true
|
3929efa122818d2e10dac2121df76b0905e86f0e
|
Shell
|
0x238e/SysY-2020-Compiler-For-Rpi4
|
/test/c-testsuite.sh
|
UTF-8
| 142
| 2.75
| 3
|
[
"MIT"
] |
permissive
|
#!/bin/bash
if [ -d "c-testsuite" ]; then
echo "c-testsuite exists"
else
git clone https://github.com/c-testsuite/c-testsuite.git
fi
| true
|
dcb7e202a79a5ea1b2149ecdb46948a42a72eb8e
|
Shell
|
Rahlir/dotfiles
|
/bash/.bashrc
|
UTF-8
| 2,535
| 3.75
| 4
|
[] |
no_license
|
# BASHRC
#
# Basic bashrc with slightly modified prompt, XDG Base Dir
# setup, sane history setup, colors, and few extra options
#
# by Tadeas Uhlir <tadeas.uhlir@gmail.com>
############################################################
### Basic Checks ###
############################################################
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
# Ensure XDG Base Directory variables are set. They are usually set in profile,
# but just to be extra careful
[[ -n "$XDG_CONFIG_HOME" ]] || export XDG_CONFIG_HOME="$HOME/.config"
[[ -n "$XDG_DATA_HOME" ]] || export XDG_DATA_HOME="$HOME/.local/share"
[[ -n "$XDG_STATE_HOME" ]] || export XDG_STATE_HOME="$HOME/.local/state"
[[ -n "$XDG_CACHE_HOME" ]] || export XDG_CACHE_HOME="$HOME/.cache"
# Ensure zsh folders exist in XDG directories
[[ -d "$XDG_STATE_HOME/bash" ]] || mkdir "$XDG_STATE_HOME/bash"
# Sourcing external files:
if [[ -r ~/.bashrc_local ]]; then
source ~/.bashrc_local
fi
if [[ -r ~/.bash_aliases ]]; then
source ~/.bash_aliases
fi
############################################################
### Options and Other Configurations ###
############################################################
# History configuration:
HISTSIZE=5000
HISTFILESIZE=10000
HISTFILE="$XDG_STATE_HOME/bash/history"
shopt -s histappend
shopt -s extglob # Enable extended globbing
shopt -s dotglob # Enable globbing and matching files beginning with .
# Dircolors configuration:
DIRCOLORSFILE=~/.dircolors
[[ -r "$DIRCOLORSFILE" ]] && eval "$(dircolors $DIRCOLORSFILE)"
# Prompt configuration:
# Taken straight from the example bashrc of ArchLinux
PS1='\[\033[01;33m\]\u@\h\[\033[00;37m\]=>\[\033[01;34m\]\w\[\033[00;37m\]\$\[\033[00m\] '
# On macOS, bash-completion needs to be sourced manually
if [[ "$(uname -s)" == Darwin ]]; then
[[ -r "$HOMEBREW_PREFIX/etc/profile.d/bash_completion.sh" ]] && \
source "$HOMEBREW_PREFIX/etc/profile.d/bash_completion.sh"
fi
############################################################
### Functions ###
############################################################
lscolors() {
IFS=:
for ls_color in ${LS_COLORS[@]}; do # For all colors
color=${ls_color##*=}
ext=${ls_color%%=*}
printf "\E[${color}m${ext}\E[0m " # echo color and extension
done
echo
}
color-sample() {
for col in "$@"; do
printf "\x1b[38;5;${col}mxxxxxxx\x1b[0m\n"
done
}
| true
|
cb93af56e8f77dbf974f23932fadf434fe2cb4d7
|
Shell
|
TrellixVulnTeam/proto-quic_1V94
|
/depot_tools/git-bash
|
UTF-8
| 516
| 2.875
| 3
|
[
"BSD-3-Clause"
] |
permissive
|
#!/usr/bin/env bash
# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# This apparently useless file enables windows users to get access to
# depot_tools' built-in bash.exe. When git executes this file as in `git bash`,
# it has bash and related tools pre-installed in the environment. Therefore even
# though 'bash' from cmd.exe doesn't work, bash here does work as you'd expect.
bash "$@"
| true
|
8573a24b3d932cc2c374472c5b7ccce7ebb886f6
|
Shell
|
roflcopter4/PersonalDotFiles
|
/Scripts/misc/make.sh
|
UTF-8
| 206
| 2.9375
| 3
|
[
"MIT"
] |
permissive
|
#!/bin/sh
_numMakeProcesses=$(($(nproc --all)+1))
#_numMakeProcesses=$(nproc --all)
if [ "$#" -gt 0 ]; then
/usr/bin/make -j "$_numMakeProcesses" "$@"
else
/usr/bin/make -j "$_numMakeProcesses"
fi
| true
|
8ccd8be9933b01fad1d3f863e90db7cec48e4ee3
|
Shell
|
jffpviana/aggression_RRBS
|
/scripts/preprocessing/CTT/HPT/1.0.combine_sequencing_runs_CTT_HPT_BEAR.sh
|
UTF-8
| 1,773
| 3.28125
| 3
|
[] |
no_license
|
module load slurm-interactive #load module
fisbatch_screen --ntasks 1 --time 12:0:0
#These samples were sequenced twice. After inspecting the raw reads of both runs separately (FACTQC) and check their quality I decided to combine both for further analysis
cd /rds/projects/v/vianaj-genomics-brain-development/MATRICS/CTT/HPT/ # change directory
mkdir combined # create folder combined
#These samples were sequenced only once so we just need to move them to the combined folder
mv /rds/projects/v/vianaj-genomics-brain-development/MATRICS/CTT/HPT/CB2DBANXX/* /rds/projects/v/vianaj-genomics-brain-development/MATRICS/CTT/HPT/combined
for fasta in /rds/projects/v/vianaj-genomics-brain-development/MATRICS/CTT/HPT/combined/*.fastq
do
file=`basename $fasta`
name=`echo $file | cut -c 1-8`
mv $file $name.fastq
done
#Samples 14 an 04 were sequences in two separate runs
for fasta in /rds/projects/v/vianaj-genomics-brain-development/MATRICS/CTT/HPT/CB2N2ANXX/*.fq
do
file=`basename $fasta`
name=`echo $file | cut -c 6-12`
echo $fasta
echo $name
file1=`ls /rds/projects/v/vianaj-genomics-brain-development/MATRICS/CTT/HPT/CB2N2ANXX/*.fq | grep $name`
file2=`ls /rds/projects/v/vianaj-genomics-brain-development/MATRICS/CTT/HPT/CB30KANXX/*.fq | grep $name`
cat $file1 $file2 > /rds/projects/v/vianaj-genomics-brain-development/MATRICS/CTT/HPT/combined/$name.fq
file3=/rds/projects/v/vianaj-genomics-brain-development/MATRICS/CTT/HPT/combined/$name.fq
echo $file3
lines1=`echo $(cat $file1 | wc -l) / 4 | bc`
lines2=`echo $(cat $file2 | wc -l) / 4 | bc`
sum_lines=`echo "$(($lines1+$lines2))"`
lines3=`echo $(cat $file3 | wc -l) / 4 | bc`
if [ "$sum_lines" = "$lines3" ]
then
echo $name" Pass reads"
else
echo $name" Fail reads"
fi
done;
| true
|
1cf43542d3a773a457d1890177eebe3dfdb8ed1e
|
Shell
|
weijl6819/httpolice
|
/tools/vnu.sh
|
UTF-8
| 741
| 3.8125
| 4
|
[
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] |
permissive
|
#!/bin/sh
# Download and run a local copy of the `Nu Html Checker`__.
# We do this (rather than simply upload to the online public instance)
# in order to pin down the version of the checker
# and thus ensure reproducibility.
#
# __ https://validator.github.io/validator/
set -e
RELEASES=https://github.com/validator/validator/releases
VERSION=17.7.0
JAVA=/usr/lib/jvm/java-8-oracle/bin/java
test -e "$JAVA" || JAVA=java
BASE=$HOME/install-vnu
action=$1
shift
case $action in
install)
rm -rf "$BASE"
mkdir "$BASE"
cd "$BASE"
wget "$RELEASES/download/$VERSION/vnu.jar_$VERSION.zip" -O vnu.zip
unzip vnu.zip
;;
run)
"$JAVA" -jar "$BASE/dist/vnu.jar" "$@"
;;
esac
| true
|
3de47c992b028354843806e7d763af1ac0e9e1c9
|
Shell
|
hlkiltas/examples
|
/multiregion/scripts/jmx_metrics.sh
|
UTF-8
| 1,453
| 2.984375
| 3
|
[
"Apache-2.0"
] |
permissive
|
#!/bin/bash
for metric in ReplicasCount InSyncReplicasCount CaughtUpReplicasCount
do
echo -e "\n\n==> Monitor $metric \n"
for topic in single-region multi-region-sync multi-region-async multi-region-default
do
BW1=$(docker-compose exec broker-west-1 kafka-run-class kafka.tools.JmxTool --jmx-url service:jmx:rmi:///jndi/rmi://localhost:8091/jmxrmi --object-name kafka.cluster:type=Partition,name=$metric,topic=$topic,partition=0 --one-time true | tail -n 1 | awk -F, '{print $2;}' | head -c 1)
BW2=$(docker-compose exec broker-west-2 kafka-run-class kafka.tools.JmxTool --jmx-url service:jmx:rmi:///jndi/rmi://localhost:8092/jmxrmi --object-name kafka.cluster:type=Partition,name=$metric,topic=$topic,partition=0 --one-time true | tail -n 1 | awk -F, '{print $2;}' | head -c 1)
BE3=$(docker-compose exec broker-east-3 kafka-run-class kafka.tools.JmxTool --jmx-url service:jmx:rmi:///jndi/rmi://localhost:8093/jmxrmi --object-name kafka.cluster:type=Partition,name=$metric,topic=$topic,partition=0 --one-time true | tail -n 1 | awk -F, '{print $2;}' | head -c 1)
BE4=$(docker-compose exec broker-east-4 kafka-run-class kafka.tools.JmxTool --jmx-url service:jmx:rmi:///jndi/rmi://localhost:8094/jmxrmi --object-name kafka.cluster:type=Partition,name=$metric,topic=$topic,partition=0 --one-time true | tail -n 1 | awk -F, '{print $2;}' | head -c 1)
REPLICAS=$((BW1 + BW2 + BE3 + BE4))
echo "$topic: $REPLICAS"
done
done
| true
|
aa54bcc74816da014c731496458e7f417019f15d
|
Shell
|
BerkeleyLab/Bedrock
|
/badger/tests/teststand_ac701.sh
|
UTF-8
| 462
| 2.546875
| 3
|
[
"LicenseRef-scancode-unknown-license-reference",
"BSD-3-Clause-LBNL"
] |
permissive
|
#!/bin/sh
#
# Loads a bitfile onto an AC701 and runs a basic check that it "works".
# Tested useful for the CI test stand (mohs) at LBNL.
# Can also act as a template for other use cases.
set -e
xc3sprog -c jtaghs1_fast ac701_rgmii_vtest.bit
echo "So far so good"
sleep 8
echo "Hope links are up"
# IP address must match that configured in hw_test.v
# Hard to get default python from top_rules.mk, just use python3
python3 badger_lb_io.py --ip 192.168.19.8 show
| true
|
f29d7824ae22194f9fe0605873889097fc8a7518
|
Shell
|
SarvagyaVaish/cache-simulator
|
/Memory Hierarchy Design/two_level_cache/two_level_cachesim_sh_files/simulations_all_11.sh
|
UTF-8
| 439,847
| 2.640625
| 3
|
[] |
no_license
|
TRACES=`ls trace.$1*`
for t in $TRACES; do
echo -n "$t 16 131072 2 128 16384 16 - 1330176 - " > ./results/cachesim_result_27501_$t.txt
./cachesim $t 16 131072 2 128 16384 16 >> ./results/cachesim_result_27501_$t.txt &
echo -n "$t 16 131072 2 256 16384 16 - 1328640 - " > ./results/cachesim_result_27502_$t.txt
./cachesim $t 16 131072 2 256 16384 16 >> ./results/cachesim_result_27502_$t.txt &
echo -n "$t 16 131072 2 512 16384 16 - 1327872 - " > ./results/cachesim_result_27503_$t.txt
./cachesim $t 16 131072 2 512 16384 16 >> ./results/cachesim_result_27503_$t.txt &
echo -n "$t 16 131072 2 1024 16384 16 - 1327488 - " > ./results/cachesim_result_27504_$t.txt
./cachesim $t 16 131072 2 1024 16384 16 >> ./results/cachesim_result_27504_$t.txt &
echo -n "$t 16 131072 2 16 16384 32 - 1352704 - " > ./results/cachesim_result_27505_$t.txt
./cachesim $t 16 131072 2 16 16384 32 >> ./results/cachesim_result_27505_$t.txt &
echo -n "$t 16 131072 2 32 16384 32 - 1339904 - " > ./results/cachesim_result_27506_$t.txt
./cachesim $t 16 131072 2 32 16384 32 >> ./results/cachesim_result_27506_$t.txt &
echo -n "$t 16 131072 2 64 16384 32 - 1333504 - " > ./results/cachesim_result_27507_$t.txt
./cachesim $t 16 131072 2 64 16384 32 >> ./results/cachesim_result_27507_$t.txt &
echo -n "$t 16 131072 2 128 16384 32 - 1330304 - " > ./results/cachesim_result_27508_$t.txt
./cachesim $t 16 131072 2 128 16384 32 >> ./results/cachesim_result_27508_$t.txt &
echo -n "$t 16 131072 2 256 16384 32 - 1328704 - " > ./results/cachesim_result_27509_$t.txt
./cachesim $t 16 131072 2 256 16384 32 >> ./results/cachesim_result_27509_$t.txt &
echo -n "$t 16 131072 2 512 16384 32 - 1327904 - " > ./results/cachesim_result_27510_$t.txt
./cachesim $t 16 131072 2 512 16384 32 >> ./results/cachesim_result_27510_$t.txt &
echo -n "$t 16 131072 2 16 32768 1 - 1497088 - " > ./results/cachesim_result_27511_$t.txt
./cachesim $t 16 131072 2 16 32768 1 >> ./results/cachesim_result_27511_$t.txt &
echo -n "$t 16 131072 2 32 32768 1 - 1477632 - " > ./results/cachesim_result_27512_$t.txt
./cachesim $t 16 131072 2 32 32768 1 >> ./results/cachesim_result_27512_$t.txt &
echo -n "$t 16 131072 2 64 32768 1 - 1467904 - " > ./results/cachesim_result_27513_$t.txt
./cachesim $t 16 131072 2 64 32768 1 >> ./results/cachesim_result_27513_$t.txt &
echo -n "$t 16 131072 2 128 32768 1 - 1463040 - " > ./results/cachesim_result_27514_$t.txt
./cachesim $t 16 131072 2 128 32768 1 >> ./results/cachesim_result_27514_$t.txt &
echo -n "$t 16 131072 2 256 32768 1 - 1460608 - " > ./results/cachesim_result_27515_$t.txt
./cachesim $t 16 131072 2 256 32768 1 >> ./results/cachesim_result_27515_$t.txt &
echo -n "$t 16 131072 2 512 32768 1 - 1459392 - " > ./results/cachesim_result_27516_$t.txt
./cachesim $t 16 131072 2 512 32768 1 >> ./results/cachesim_result_27516_$t.txt &
echo -n "$t 16 131072 2 1024 32768 1 - 1458784 - " > ./results/cachesim_result_27517_$t.txt
./cachesim $t 16 131072 2 1024 32768 1 >> ./results/cachesim_result_27517_$t.txt &
echo -n "$t 16 131072 2 16 32768 2 - 1499136 - " > ./results/cachesim_result_27518_$t.txt
./cachesim $t 16 131072 2 16 32768 2 >> ./results/cachesim_result_27518_$t.txt &
echo -n "$t 16 131072 2 32 32768 2 - 1478656 - " > ./results/cachesim_result_27519_$t.txt
./cachesim $t 16 131072 2 32 32768 2 >> ./results/cachesim_result_27519_$t.txt &
echo -n "$t 16 131072 2 64 32768 2 - 1468416 - " > ./results/cachesim_result_27520_$t.txt
./cachesim $t 16 131072 2 64 32768 2 >> ./results/cachesim_result_27520_$t.txt &
echo -n "$t 16 131072 2 128 32768 2 - 1463296 - " > ./results/cachesim_result_27521_$t.txt
./cachesim $t 16 131072 2 128 32768 2 >> ./results/cachesim_result_27521_$t.txt &
echo -n "$t 16 131072 2 256 32768 2 - 1460736 - " > ./results/cachesim_result_27522_$t.txt
./cachesim $t 16 131072 2 256 32768 2 >> ./results/cachesim_result_27522_$t.txt &
echo -n "$t 16 131072 2 512 32768 2 - 1459456 - " > ./results/cachesim_result_27523_$t.txt
./cachesim $t 16 131072 2 512 32768 2 >> ./results/cachesim_result_27523_$t.txt &
echo -n "$t 16 131072 2 1024 32768 2 - 1458816 - " > ./results/cachesim_result_27524_$t.txt
./cachesim $t 16 131072 2 1024 32768 2 >> ./results/cachesim_result_27524_$t.txt &
echo -n "$t 16 131072 2 32 32768 4 - 1479680 - " > ./results/cachesim_result_27525_$t.txt
./cachesim $t 16 131072 2 32 32768 4 >> ./results/cachesim_result_27525_$t.txt &
echo -n "$t 16 131072 2 64 32768 4 - 1468928 - " > ./results/cachesim_result_27526_$t.txt
./cachesim $t 16 131072 2 64 32768 4 >> ./results/cachesim_result_27526_$t.txt &
echo -n "$t 16 131072 2 128 32768 4 - 1463552 - " > ./results/cachesim_result_27527_$t.txt
./cachesim $t 16 131072 2 128 32768 4 >> ./results/cachesim_result_27527_$t.txt &
echo -n "$t 16 131072 2 256 32768 4 - 1460864 - " > ./results/cachesim_result_27528_$t.txt
./cachesim $t 16 131072 2 256 32768 4 >> ./results/cachesim_result_27528_$t.txt &
echo -n "$t 16 131072 2 512 32768 4 - 1459520 - " > ./results/cachesim_result_27529_$t.txt
./cachesim $t 16 131072 2 512 32768 4 >> ./results/cachesim_result_27529_$t.txt &
echo -n "$t 16 131072 2 1024 32768 4 - 1458848 - " > ./results/cachesim_result_27530_$t.txt
./cachesim $t 16 131072 2 1024 32768 4 >> ./results/cachesim_result_27530_$t.txt &
echo -n "$t 16 131072 2 32 32768 8 - 1480704 - " > ./results/cachesim_result_27531_$t.txt
./cachesim $t 16 131072 2 32 32768 8 >> ./results/cachesim_result_27531_$t.txt &
echo -n "$t 16 131072 2 64 32768 8 - 1469440 - " > ./results/cachesim_result_27532_$t.txt
./cachesim $t 16 131072 2 64 32768 8 >> ./results/cachesim_result_27532_$t.txt &
echo -n "$t 16 131072 2 128 32768 8 - 1463808 - " > ./results/cachesim_result_27533_$t.txt
./cachesim $t 16 131072 2 128 32768 8 >> ./results/cachesim_result_27533_$t.txt &
echo -n "$t 16 131072 2 256 32768 8 - 1460992 - " > ./results/cachesim_result_27534_$t.txt
./cachesim $t 16 131072 2 256 32768 8 >> ./results/cachesim_result_27534_$t.txt &
echo -n "$t 16 131072 2 512 32768 8 - 1459584 - " > ./results/cachesim_result_27535_$t.txt
./cachesim $t 16 131072 2 512 32768 8 >> ./results/cachesim_result_27535_$t.txt &
echo -n "$t 16 131072 2 1024 32768 8 - 1458880 - " > ./results/cachesim_result_27536_$t.txt
./cachesim $t 16 131072 2 1024 32768 8 >> ./results/cachesim_result_27536_$t.txt &
echo -n "$t 16 131072 2 32 32768 16 - 1481728 - " > ./results/cachesim_result_27537_$t.txt
./cachesim $t 16 131072 2 32 32768 16 >> ./results/cachesim_result_27537_$t.txt &
echo -n "$t 16 131072 2 64 32768 16 - 1469952 - " > ./results/cachesim_result_27538_$t.txt
./cachesim $t 16 131072 2 64 32768 16 >> ./results/cachesim_result_27538_$t.txt &
echo -n "$t 16 131072 2 128 32768 16 - 1464064 - " > ./results/cachesim_result_27539_$t.txt
./cachesim $t 16 131072 2 128 32768 16 >> ./results/cachesim_result_27539_$t.txt &
echo -n "$t 16 131072 2 256 32768 16 - 1461120 - " > ./results/cachesim_result_27540_$t.txt
./cachesim $t 16 131072 2 256 32768 16 >> ./results/cachesim_result_27540_$t.txt &
echo -n "$t 16 131072 2 512 32768 16 - 1459648 - " > ./results/cachesim_result_27541_$t.txt
./cachesim $t 16 131072 2 512 32768 16 >> ./results/cachesim_result_27541_$t.txt &
echo -n "$t 16 131072 2 1024 32768 16 - 1458912 - " > ./results/cachesim_result_27542_$t.txt
./cachesim $t 16 131072 2 1024 32768 16 >> ./results/cachesim_result_27542_$t.txt &
echo -n "$t 16 131072 2 32 32768 32 - 1482752 - " > ./results/cachesim_result_27543_$t.txt
./cachesim $t 16 131072 2 32 32768 32 >> ./results/cachesim_result_27543_$t.txt &
echo -n "$t 16 131072 2 64 32768 32 - 1470464 - " > ./results/cachesim_result_27544_$t.txt
./cachesim $t 16 131072 2 64 32768 32 >> ./results/cachesim_result_27544_$t.txt &
echo -n "$t 16 131072 2 128 32768 32 - 1464320 - " > ./results/cachesim_result_27545_$t.txt
./cachesim $t 16 131072 2 128 32768 32 >> ./results/cachesim_result_27545_$t.txt &
echo -n "$t 16 131072 2 256 32768 32 - 1461248 - " > ./results/cachesim_result_27546_$t.txt
./cachesim $t 16 131072 2 256 32768 32 >> ./results/cachesim_result_27546_$t.txt &
echo -n "$t 16 131072 2 512 32768 32 - 1459712 - " > ./results/cachesim_result_27547_$t.txt
./cachesim $t 16 131072 2 512 32768 32 >> ./results/cachesim_result_27547_$t.txt &
echo -n "$t 16 131072 2 1024 32768 32 - 1458944 - " > ./results/cachesim_result_27548_$t.txt
./cachesim $t 16 131072 2 1024 32768 32 >> ./results/cachesim_result_27548_$t.txt &
echo -n "$t 32 131072 2 32 4096 1 - 1157888 - " > ./results/cachesim_result_27549_$t.txt
./cachesim $t 32 131072 2 32 4096 1 >> ./results/cachesim_result_27549_$t.txt &
echo -n "$t 32 131072 2 64 4096 1 - 1156480 - " > ./results/cachesim_result_27550_$t.txt
./cachesim $t 32 131072 2 64 4096 1 >> ./results/cachesim_result_27550_$t.txt &
echo -n "$t 32 131072 2 128 4096 1 - 1155776 - " > ./results/cachesim_result_27551_$t.txt
./cachesim $t 32 131072 2 128 4096 1 >> ./results/cachesim_result_27551_$t.txt &
echo -n "$t 32 131072 2 256 4096 1 - 1155424 - " > ./results/cachesim_result_27552_$t.txt
./cachesim $t 32 131072 2 256 4096 1 >> ./results/cachesim_result_27552_$t.txt &
echo -n "$t 32 131072 2 512 4096 1 - 1155248 - " > ./results/cachesim_result_27553_$t.txt
./cachesim $t 32 131072 2 512 4096 1 >> ./results/cachesim_result_27553_$t.txt &
echo -n "$t 32 131072 2 1024 4096 1 - 1155160 - " > ./results/cachesim_result_27554_$t.txt
./cachesim $t 32 131072 2 1024 4096 1 >> ./results/cachesim_result_27554_$t.txt &
echo -n "$t 32 131072 2 32 4096 2 - 1158016 - " > ./results/cachesim_result_27555_$t.txt
./cachesim $t 32 131072 2 32 4096 2 >> ./results/cachesim_result_27555_$t.txt &
echo -n "$t 32 131072 2 64 4096 2 - 1156544 - " > ./results/cachesim_result_27556_$t.txt
./cachesim $t 32 131072 2 64 4096 2 >> ./results/cachesim_result_27556_$t.txt &
echo -n "$t 32 131072 2 128 4096 2 - 1155808 - " > ./results/cachesim_result_27557_$t.txt
./cachesim $t 32 131072 2 128 4096 2 >> ./results/cachesim_result_27557_$t.txt &
echo -n "$t 32 131072 2 256 4096 2 - 1155440 - " > ./results/cachesim_result_27558_$t.txt
./cachesim $t 32 131072 2 256 4096 2 >> ./results/cachesim_result_27558_$t.txt &
echo -n "$t 32 131072 2 512 4096 2 - 1155256 - " > ./results/cachesim_result_27559_$t.txt
./cachesim $t 32 131072 2 512 4096 2 >> ./results/cachesim_result_27559_$t.txt &
echo -n "$t 32 131072 2 1024 4096 2 - 1155164 - " > ./results/cachesim_result_27560_$t.txt
./cachesim $t 32 131072 2 1024 4096 2 >> ./results/cachesim_result_27560_$t.txt &
echo -n "$t 32 131072 2 32 4096 4 - 1158144 - " > ./results/cachesim_result_27561_$t.txt
./cachesim $t 32 131072 2 32 4096 4 >> ./results/cachesim_result_27561_$t.txt &
echo -n "$t 32 131072 2 64 4096 4 - 1156608 - " > ./results/cachesim_result_27562_$t.txt
./cachesim $t 32 131072 2 64 4096 4 >> ./results/cachesim_result_27562_$t.txt &
echo -n "$t 32 131072 2 128 4096 4 - 1155840 - " > ./results/cachesim_result_27563_$t.txt
./cachesim $t 32 131072 2 128 4096 4 >> ./results/cachesim_result_27563_$t.txt &
echo -n "$t 32 131072 2 256 4096 4 - 1155456 - " > ./results/cachesim_result_27564_$t.txt
./cachesim $t 32 131072 2 256 4096 4 >> ./results/cachesim_result_27564_$t.txt &
echo -n "$t 32 131072 2 512 4096 4 - 1155264 - " > ./results/cachesim_result_27565_$t.txt
./cachesim $t 32 131072 2 512 4096 4 >> ./results/cachesim_result_27565_$t.txt &
echo -n "$t 32 131072 2 1024 4096 4 - 1155168 - " > ./results/cachesim_result_27566_$t.txt
./cachesim $t 32 131072 2 1024 4096 4 >> ./results/cachesim_result_27566_$t.txt &
echo -n "$t 32 131072 2 32 4096 8 - 1158272 - " > ./results/cachesim_result_27567_$t.txt
./cachesim $t 32 131072 2 32 4096 8 >> ./results/cachesim_result_27567_$t.txt &
echo -n "$t 32 131072 2 64 4096 8 - 1156672 - " > ./results/cachesim_result_27568_$t.txt
./cachesim $t 32 131072 2 64 4096 8 >> ./results/cachesim_result_27568_$t.txt &
echo -n "$t 32 131072 2 128 4096 8 - 1155872 - " > ./results/cachesim_result_27569_$t.txt
./cachesim $t 32 131072 2 128 4096 8 >> ./results/cachesim_result_27569_$t.txt &
echo -n "$t 32 131072 2 256 4096 8 - 1155472 - " > ./results/cachesim_result_27570_$t.txt
./cachesim $t 32 131072 2 256 4096 8 >> ./results/cachesim_result_27570_$t.txt &
echo -n "$t 32 131072 2 512 4096 8 - 1155272 - " > ./results/cachesim_result_27571_$t.txt
./cachesim $t 32 131072 2 512 4096 8 >> ./results/cachesim_result_27571_$t.txt &
echo -n "$t 32 131072 2 32 4096 16 - 1158400 - " > ./results/cachesim_result_27572_$t.txt
./cachesim $t 32 131072 2 32 4096 16 >> ./results/cachesim_result_27572_$t.txt &
echo -n "$t 32 131072 2 64 4096 16 - 1156736 - " > ./results/cachesim_result_27573_$t.txt
./cachesim $t 32 131072 2 64 4096 16 >> ./results/cachesim_result_27573_$t.txt &
echo -n "$t 32 131072 2 128 4096 16 - 1155904 - " > ./results/cachesim_result_27574_$t.txt
./cachesim $t 32 131072 2 128 4096 16 >> ./results/cachesim_result_27574_$t.txt &
echo -n "$t 32 131072 2 256 4096 16 - 1155488 - " > ./results/cachesim_result_27575_$t.txt
./cachesim $t 32 131072 2 256 4096 16 >> ./results/cachesim_result_27575_$t.txt &
echo -n "$t 32 131072 2 32 4096 32 - 1158528 - " > ./results/cachesim_result_27576_$t.txt
./cachesim $t 32 131072 2 32 4096 32 >> ./results/cachesim_result_27576_$t.txt &
echo -n "$t 32 131072 2 64 4096 32 - 1156800 - " > ./results/cachesim_result_27577_$t.txt
./cachesim $t 32 131072 2 64 4096 32 >> ./results/cachesim_result_27577_$t.txt &
echo -n "$t 32 131072 2 128 4096 32 - 1155936 - " > ./results/cachesim_result_27578_$t.txt
./cachesim $t 32 131072 2 128 4096 32 >> ./results/cachesim_result_27578_$t.txt &
echo -n "$t 32 131072 2 32 8192 1 - 1193216 - " > ./results/cachesim_result_27579_$t.txt
./cachesim $t 32 131072 2 32 8192 1 >> ./results/cachesim_result_27579_$t.txt &
echo -n "$t 32 131072 2 64 8192 1 - 1190528 - " > ./results/cachesim_result_27580_$t.txt
./cachesim $t 32 131072 2 64 8192 1 >> ./results/cachesim_result_27580_$t.txt &
echo -n "$t 32 131072 2 128 8192 1 - 1189184 - " > ./results/cachesim_result_27581_$t.txt
./cachesim $t 32 131072 2 128 8192 1 >> ./results/cachesim_result_27581_$t.txt &
echo -n "$t 32 131072 2 256 8192 1 - 1188512 - " > ./results/cachesim_result_27582_$t.txt
./cachesim $t 32 131072 2 256 8192 1 >> ./results/cachesim_result_27582_$t.txt &
echo -n "$t 32 131072 2 512 8192 1 - 1188176 - " > ./results/cachesim_result_27583_$t.txt
./cachesim $t 32 131072 2 512 8192 1 >> ./results/cachesim_result_27583_$t.txt &
echo -n "$t 32 131072 2 1024 8192 1 - 1188008 - " > ./results/cachesim_result_27584_$t.txt
./cachesim $t 32 131072 2 1024 8192 1 >> ./results/cachesim_result_27584_$t.txt &
echo -n "$t 32 131072 2 32 8192 2 - 1193472 - " > ./results/cachesim_result_27585_$t.txt
./cachesim $t 32 131072 2 32 8192 2 >> ./results/cachesim_result_27585_$t.txt &
echo -n "$t 32 131072 2 64 8192 2 - 1190656 - " > ./results/cachesim_result_27586_$t.txt
./cachesim $t 32 131072 2 64 8192 2 >> ./results/cachesim_result_27586_$t.txt &
echo -n "$t 32 131072 2 128 8192 2 - 1189248 - " > ./results/cachesim_result_27587_$t.txt
./cachesim $t 32 131072 2 128 8192 2 >> ./results/cachesim_result_27587_$t.txt &
echo -n "$t 32 131072 2 256 8192 2 - 1188544 - " > ./results/cachesim_result_27588_$t.txt
./cachesim $t 32 131072 2 256 8192 2 >> ./results/cachesim_result_27588_$t.txt &
echo -n "$t 32 131072 2 512 8192 2 - 1188192 - " > ./results/cachesim_result_27589_$t.txt
./cachesim $t 32 131072 2 512 8192 2 >> ./results/cachesim_result_27589_$t.txt &
echo -n "$t 32 131072 2 1024 8192 2 - 1188016 - " > ./results/cachesim_result_27590_$t.txt
./cachesim $t 32 131072 2 1024 8192 2 >> ./results/cachesim_result_27590_$t.txt &
echo -n "$t 32 131072 2 32 8192 4 - 1193728 - " > ./results/cachesim_result_27591_$t.txt
./cachesim $t 32 131072 2 32 8192 4 >> ./results/cachesim_result_27591_$t.txt &
echo -n "$t 32 131072 2 64 8192 4 - 1190784 - " > ./results/cachesim_result_27592_$t.txt
./cachesim $t 32 131072 2 64 8192 4 >> ./results/cachesim_result_27592_$t.txt &
echo -n "$t 32 131072 2 128 8192 4 - 1189312 - " > ./results/cachesim_result_27593_$t.txt
./cachesim $t 32 131072 2 128 8192 4 >> ./results/cachesim_result_27593_$t.txt &
echo -n "$t 32 131072 2 256 8192 4 - 1188576 - " > ./results/cachesim_result_27594_$t.txt
./cachesim $t 32 131072 2 256 8192 4 >> ./results/cachesim_result_27594_$t.txt &
echo -n "$t 32 131072 2 512 8192 4 - 1188208 - " > ./results/cachesim_result_27595_$t.txt
./cachesim $t 32 131072 2 512 8192 4 >> ./results/cachesim_result_27595_$t.txt &
echo -n "$t 32 131072 2 1024 8192 4 - 1188024 - " > ./results/cachesim_result_27596_$t.txt
./cachesim $t 32 131072 2 1024 8192 4 >> ./results/cachesim_result_27596_$t.txt &
echo -n "$t 32 131072 2 32 8192 8 - 1193984 - " > ./results/cachesim_result_27597_$t.txt
./cachesim $t 32 131072 2 32 8192 8 >> ./results/cachesim_result_27597_$t.txt &
echo -n "$t 32 131072 2 64 8192 8 - 1190912 - " > ./results/cachesim_result_27598_$t.txt
./cachesim $t 32 131072 2 64 8192 8 >> ./results/cachesim_result_27598_$t.txt &
echo -n "$t 32 131072 2 128 8192 8 - 1189376 - " > ./results/cachesim_result_27599_$t.txt
./cachesim $t 32 131072 2 128 8192 8 >> ./results/cachesim_result_27599_$t.txt &
echo -n "$t 32 131072 2 256 8192 8 - 1188608 - " > ./results/cachesim_result_27600_$t.txt
./cachesim $t 32 131072 2 256 8192 8 >> ./results/cachesim_result_27600_$t.txt &
echo -n "$t 32 131072 2 512 8192 8 - 1188224 - " > ./results/cachesim_result_27601_$t.txt
./cachesim $t 32 131072 2 512 8192 8 >> ./results/cachesim_result_27601_$t.txt &
echo -n "$t 32 131072 2 1024 8192 8 - 1188032 - " > ./results/cachesim_result_27602_$t.txt
./cachesim $t 32 131072 2 1024 8192 8 >> ./results/cachesim_result_27602_$t.txt &
echo -n "$t 32 131072 2 32 8192 16 - 1194240 - " > ./results/cachesim_result_27603_$t.txt
./cachesim $t 32 131072 2 32 8192 16 >> ./results/cachesim_result_27603_$t.txt &
echo -n "$t 32 131072 2 64 8192 16 - 1191040 - " > ./results/cachesim_result_27604_$t.txt
./cachesim $t 32 131072 2 64 8192 16 >> ./results/cachesim_result_27604_$t.txt &
echo -n "$t 32 131072 2 128 8192 16 - 1189440 - " > ./results/cachesim_result_27605_$t.txt
./cachesim $t 32 131072 2 128 8192 16 >> ./results/cachesim_result_27605_$t.txt &
echo -n "$t 32 131072 2 256 8192 16 - 1188640 - " > ./results/cachesim_result_27606_$t.txt
./cachesim $t 32 131072 2 256 8192 16 >> ./results/cachesim_result_27606_$t.txt &
echo -n "$t 32 131072 2 512 8192 16 - 1188240 - " > ./results/cachesim_result_27607_$t.txt
./cachesim $t 32 131072 2 512 8192 16 >> ./results/cachesim_result_27607_$t.txt &
echo -n "$t 32 131072 2 32 8192 32 - 1194496 - " > ./results/cachesim_result_27608_$t.txt
./cachesim $t 32 131072 2 32 8192 32 >> ./results/cachesim_result_27608_$t.txt &
echo -n "$t 32 131072 2 64 8192 32 - 1191168 - " > ./results/cachesim_result_27609_$t.txt
./cachesim $t 32 131072 2 64 8192 32 >> ./results/cachesim_result_27609_$t.txt &
echo -n "$t 32 131072 2 128 8192 32 - 1189504 - " > ./results/cachesim_result_27610_$t.txt
./cachesim $t 32 131072 2 128 8192 32 >> ./results/cachesim_result_27610_$t.txt &
echo -n "$t 32 131072 2 256 8192 32 - 1188672 - " > ./results/cachesim_result_27611_$t.txt
./cachesim $t 32 131072 2 256 8192 32 >> ./results/cachesim_result_27611_$t.txt &
echo -n "$t 32 131072 2 32 16384 1 - 1263616 - " > ./results/cachesim_result_27612_$t.txt
./cachesim $t 32 131072 2 32 16384 1 >> ./results/cachesim_result_27612_$t.txt &
echo -n "$t 32 131072 2 64 16384 1 - 1258496 - " > ./results/cachesim_result_27613_$t.txt
./cachesim $t 32 131072 2 64 16384 1 >> ./results/cachesim_result_27613_$t.txt &
echo -n "$t 32 131072 2 128 16384 1 - 1255936 - " > ./results/cachesim_result_27614_$t.txt
./cachesim $t 32 131072 2 128 16384 1 >> ./results/cachesim_result_27614_$t.txt &
echo -n "$t 32 131072 2 256 16384 1 - 1254656 - " > ./results/cachesim_result_27615_$t.txt
./cachesim $t 32 131072 2 256 16384 1 >> ./results/cachesim_result_27615_$t.txt &
echo -n "$t 32 131072 2 512 16384 1 - 1254016 - " > ./results/cachesim_result_27616_$t.txt
./cachesim $t 32 131072 2 512 16384 1 >> ./results/cachesim_result_27616_$t.txt &
echo -n "$t 32 131072 2 1024 16384 1 - 1253696 - " > ./results/cachesim_result_27617_$t.txt
./cachesim $t 32 131072 2 1024 16384 1 >> ./results/cachesim_result_27617_$t.txt &
echo -n "$t 32 131072 2 32 16384 2 - 1264128 - " > ./results/cachesim_result_27618_$t.txt
./cachesim $t 32 131072 2 32 16384 2 >> ./results/cachesim_result_27618_$t.txt &
echo -n "$t 32 131072 2 64 16384 2 - 1258752 - " > ./results/cachesim_result_27619_$t.txt
./cachesim $t 32 131072 2 64 16384 2 >> ./results/cachesim_result_27619_$t.txt &
echo -n "$t 32 131072 2 128 16384 2 - 1256064 - " > ./results/cachesim_result_27620_$t.txt
./cachesim $t 32 131072 2 128 16384 2 >> ./results/cachesim_result_27620_$t.txt &
echo -n "$t 32 131072 2 256 16384 2 - 1254720 - " > ./results/cachesim_result_27621_$t.txt
./cachesim $t 32 131072 2 256 16384 2 >> ./results/cachesim_result_27621_$t.txt &
echo -n "$t 32 131072 2 512 16384 2 - 1254048 - " > ./results/cachesim_result_27622_$t.txt
./cachesim $t 32 131072 2 512 16384 2 >> ./results/cachesim_result_27622_$t.txt &
echo -n "$t 32 131072 2 1024 16384 2 - 1253712 - " > ./results/cachesim_result_27623_$t.txt
./cachesim $t 32 131072 2 1024 16384 2 >> ./results/cachesim_result_27623_$t.txt &
echo -n "$t 32 131072 2 32 16384 4 - 1264640 - " > ./results/cachesim_result_27624_$t.txt
./cachesim $t 32 131072 2 32 16384 4 >> ./results/cachesim_result_27624_$t.txt &
echo -n "$t 32 131072 2 64 16384 4 - 1259008 - " > ./results/cachesim_result_27625_$t.txt
./cachesim $t 32 131072 2 64 16384 4 >> ./results/cachesim_result_27625_$t.txt &
echo -n "$t 32 131072 2 128 16384 4 - 1256192 - " > ./results/cachesim_result_27626_$t.txt
./cachesim $t 32 131072 2 128 16384 4 >> ./results/cachesim_result_27626_$t.txt &
echo -n "$t 32 131072 2 256 16384 4 - 1254784 - " > ./results/cachesim_result_27627_$t.txt
./cachesim $t 32 131072 2 256 16384 4 >> ./results/cachesim_result_27627_$t.txt &
echo -n "$t 32 131072 2 512 16384 4 - 1254080 - " > ./results/cachesim_result_27628_$t.txt
./cachesim $t 32 131072 2 512 16384 4 >> ./results/cachesim_result_27628_$t.txt &
echo -n "$t 32 131072 2 1024 16384 4 - 1253728 - " > ./results/cachesim_result_27629_$t.txt
./cachesim $t 32 131072 2 1024 16384 4 >> ./results/cachesim_result_27629_$t.txt &
echo -n "$t 32 131072 2 32 16384 8 - 1265152 - " > ./results/cachesim_result_27630_$t.txt
./cachesim $t 32 131072 2 32 16384 8 >> ./results/cachesim_result_27630_$t.txt &
echo -n "$t 32 131072 2 64 16384 8 - 1259264 - " > ./results/cachesim_result_27631_$t.txt
./cachesim $t 32 131072 2 64 16384 8 >> ./results/cachesim_result_27631_$t.txt &
echo -n "$t 32 131072 2 128 16384 8 - 1256320 - " > ./results/cachesim_result_27632_$t.txt
./cachesim $t 32 131072 2 128 16384 8 >> ./results/cachesim_result_27632_$t.txt &
echo -n "$t 32 131072 2 256 16384 8 - 1254848 - " > ./results/cachesim_result_27633_$t.txt
./cachesim $t 32 131072 2 256 16384 8 >> ./results/cachesim_result_27633_$t.txt &
echo -n "$t 32 131072 2 512 16384 8 - 1254112 - " > ./results/cachesim_result_27634_$t.txt
./cachesim $t 32 131072 2 512 16384 8 >> ./results/cachesim_result_27634_$t.txt &
echo -n "$t 32 131072 2 1024 16384 8 - 1253744 - " > ./results/cachesim_result_27635_$t.txt
./cachesim $t 32 131072 2 1024 16384 8 >> ./results/cachesim_result_27635_$t.txt &
echo -n "$t 32 131072 2 32 16384 16 - 1265664 - " > ./results/cachesim_result_27636_$t.txt
./cachesim $t 32 131072 2 32 16384 16 >> ./results/cachesim_result_27636_$t.txt &
echo -n "$t 32 131072 2 64 16384 16 - 1259520 - " > ./results/cachesim_result_27637_$t.txt
./cachesim $t 32 131072 2 64 16384 16 >> ./results/cachesim_result_27637_$t.txt &
echo -n "$t 32 131072 2 128 16384 16 - 1256448 - " > ./results/cachesim_result_27638_$t.txt
./cachesim $t 32 131072 2 128 16384 16 >> ./results/cachesim_result_27638_$t.txt &
echo -n "$t 32 131072 2 256 16384 16 - 1254912 - " > ./results/cachesim_result_27639_$t.txt
./cachesim $t 32 131072 2 256 16384 16 >> ./results/cachesim_result_27639_$t.txt &
echo -n "$t 32 131072 2 512 16384 16 - 1254144 - " > ./results/cachesim_result_27640_$t.txt
./cachesim $t 32 131072 2 512 16384 16 >> ./results/cachesim_result_27640_$t.txt &
echo -n "$t 32 131072 2 1024 16384 16 - 1253760 - " > ./results/cachesim_result_27641_$t.txt
./cachesim $t 32 131072 2 1024 16384 16 >> ./results/cachesim_result_27641_$t.txt &
echo -n "$t 32 131072 2 32 16384 32 - 1266176 - " > ./results/cachesim_result_27642_$t.txt
./cachesim $t 32 131072 2 32 16384 32 >> ./results/cachesim_result_27642_$t.txt &
echo -n "$t 32 131072 2 64 16384 32 - 1259776 - " > ./results/cachesim_result_27643_$t.txt
./cachesim $t 32 131072 2 64 16384 32 >> ./results/cachesim_result_27643_$t.txt &
echo -n "$t 32 131072 2 128 16384 32 - 1256576 - " > ./results/cachesim_result_27644_$t.txt
./cachesim $t 32 131072 2 128 16384 32 >> ./results/cachesim_result_27644_$t.txt &
echo -n "$t 32 131072 2 256 16384 32 - 1254976 - " > ./results/cachesim_result_27645_$t.txt
./cachesim $t 32 131072 2 256 16384 32 >> ./results/cachesim_result_27645_$t.txt &
echo -n "$t 32 131072 2 512 16384 32 - 1254176 - " > ./results/cachesim_result_27646_$t.txt
./cachesim $t 32 131072 2 512 16384 32 >> ./results/cachesim_result_27646_$t.txt &
echo -n "$t 32 131072 2 32 32768 1 - 1403904 - " > ./results/cachesim_result_27647_$t.txt
./cachesim $t 32 131072 2 32 32768 1 >> ./results/cachesim_result_27647_$t.txt &
echo -n "$t 32 131072 2 64 32768 1 - 1394176 - " > ./results/cachesim_result_27648_$t.txt
./cachesim $t 32 131072 2 64 32768 1 >> ./results/cachesim_result_27648_$t.txt &
echo -n "$t 32 131072 2 128 32768 1 - 1389312 - " > ./results/cachesim_result_27649_$t.txt
./cachesim $t 32 131072 2 128 32768 1 >> ./results/cachesim_result_27649_$t.txt &
echo -n "$t 32 131072 2 256 32768 1 - 1386880 - " > ./results/cachesim_result_27650_$t.txt
./cachesim $t 32 131072 2 256 32768 1 >> ./results/cachesim_result_27650_$t.txt &
echo -n "$t 32 131072 2 512 32768 1 - 1385664 - " > ./results/cachesim_result_27651_$t.txt
./cachesim $t 32 131072 2 512 32768 1 >> ./results/cachesim_result_27651_$t.txt &
echo -n "$t 32 131072 2 1024 32768 1 - 1385056 - " > ./results/cachesim_result_27652_$t.txt
./cachesim $t 32 131072 2 1024 32768 1 >> ./results/cachesim_result_27652_$t.txt &
echo -n "$t 32 131072 2 32 32768 2 - 1404928 - " > ./results/cachesim_result_27653_$t.txt
./cachesim $t 32 131072 2 32 32768 2 >> ./results/cachesim_result_27653_$t.txt &
echo -n "$t 32 131072 2 64 32768 2 - 1394688 - " > ./results/cachesim_result_27654_$t.txt
./cachesim $t 32 131072 2 64 32768 2 >> ./results/cachesim_result_27654_$t.txt &
echo -n "$t 32 131072 2 128 32768 2 - 1389568 - " > ./results/cachesim_result_27655_$t.txt
./cachesim $t 32 131072 2 128 32768 2 >> ./results/cachesim_result_27655_$t.txt &
echo -n "$t 32 131072 2 256 32768 2 - 1387008 - " > ./results/cachesim_result_27656_$t.txt
./cachesim $t 32 131072 2 256 32768 2 >> ./results/cachesim_result_27656_$t.txt &
echo -n "$t 32 131072 2 512 32768 2 - 1385728 - " > ./results/cachesim_result_27657_$t.txt
./cachesim $t 32 131072 2 512 32768 2 >> ./results/cachesim_result_27657_$t.txt &
echo -n "$t 32 131072 2 1024 32768 2 - 1385088 - " > ./results/cachesim_result_27658_$t.txt
./cachesim $t 32 131072 2 1024 32768 2 >> ./results/cachesim_result_27658_$t.txt &
echo -n "$t 32 131072 2 32 32768 4 - 1405952 - " > ./results/cachesim_result_27659_$t.txt
./cachesim $t 32 131072 2 32 32768 4 >> ./results/cachesim_result_27659_$t.txt &
echo -n "$t 32 131072 2 64 32768 4 - 1395200 - " > ./results/cachesim_result_27660_$t.txt
./cachesim $t 32 131072 2 64 32768 4 >> ./results/cachesim_result_27660_$t.txt &
echo -n "$t 32 131072 2 128 32768 4 - 1389824 - " > ./results/cachesim_result_27661_$t.txt
./cachesim $t 32 131072 2 128 32768 4 >> ./results/cachesim_result_27661_$t.txt &
echo -n "$t 32 131072 2 256 32768 4 - 1387136 - " > ./results/cachesim_result_27662_$t.txt
./cachesim $t 32 131072 2 256 32768 4 >> ./results/cachesim_result_27662_$t.txt &
echo -n "$t 32 131072 2 512 32768 4 - 1385792 - " > ./results/cachesim_result_27663_$t.txt
./cachesim $t 32 131072 2 512 32768 4 >> ./results/cachesim_result_27663_$t.txt &
echo -n "$t 32 131072 2 1024 32768 4 - 1385120 - " > ./results/cachesim_result_27664_$t.txt
./cachesim $t 32 131072 2 1024 32768 4 >> ./results/cachesim_result_27664_$t.txt &
echo -n "$t 32 131072 2 32 32768 8 - 1406976 - " > ./results/cachesim_result_27665_$t.txt
./cachesim $t 32 131072 2 32 32768 8 >> ./results/cachesim_result_27665_$t.txt &
echo -n "$t 32 131072 2 64 32768 8 - 1395712 - " > ./results/cachesim_result_27666_$t.txt
./cachesim $t 32 131072 2 64 32768 8 >> ./results/cachesim_result_27666_$t.txt &
echo -n "$t 32 131072 2 128 32768 8 - 1390080 - " > ./results/cachesim_result_27667_$t.txt
./cachesim $t 32 131072 2 128 32768 8 >> ./results/cachesim_result_27667_$t.txt &
echo -n "$t 32 131072 2 256 32768 8 - 1387264 - " > ./results/cachesim_result_27668_$t.txt
./cachesim $t 32 131072 2 256 32768 8 >> ./results/cachesim_result_27668_$t.txt &
echo -n "$t 32 131072 2 512 32768 8 - 1385856 - " > ./results/cachesim_result_27669_$t.txt
./cachesim $t 32 131072 2 512 32768 8 >> ./results/cachesim_result_27669_$t.txt &
echo -n "$t 32 131072 2 1024 32768 8 - 1385152 - " > ./results/cachesim_result_27670_$t.txt
./cachesim $t 32 131072 2 1024 32768 8 >> ./results/cachesim_result_27670_$t.txt &
echo -n "$t 32 131072 2 32 32768 16 - 1408000 - " > ./results/cachesim_result_27671_$t.txt
./cachesim $t 32 131072 2 32 32768 16 >> ./results/cachesim_result_27671_$t.txt &
echo -n "$t 32 131072 2 64 32768 16 - 1396224 - " > ./results/cachesim_result_27672_$t.txt
./cachesim $t 32 131072 2 64 32768 16 >> ./results/cachesim_result_27672_$t.txt &
echo -n "$t 32 131072 2 128 32768 16 - 1390336 - " > ./results/cachesim_result_27673_$t.txt
./cachesim $t 32 131072 2 128 32768 16 >> ./results/cachesim_result_27673_$t.txt &
echo -n "$t 32 131072 2 256 32768 16 - 1387392 - " > ./results/cachesim_result_27674_$t.txt
./cachesim $t 32 131072 2 256 32768 16 >> ./results/cachesim_result_27674_$t.txt &
echo -n "$t 32 131072 2 512 32768 16 - 1385920 - " > ./results/cachesim_result_27675_$t.txt
./cachesim $t 32 131072 2 512 32768 16 >> ./results/cachesim_result_27675_$t.txt &
echo -n "$t 32 131072 2 1024 32768 16 - 1385184 - " > ./results/cachesim_result_27676_$t.txt
./cachesim $t 32 131072 2 1024 32768 16 >> ./results/cachesim_result_27676_$t.txt &
echo -n "$t 32 131072 2 32 32768 32 - 1409024 - " > ./results/cachesim_result_27677_$t.txt
./cachesim $t 32 131072 2 32 32768 32 >> ./results/cachesim_result_27677_$t.txt &
echo -n "$t 32 131072 2 64 32768 32 - 1396736 - " > ./results/cachesim_result_27678_$t.txt
./cachesim $t 32 131072 2 64 32768 32 >> ./results/cachesim_result_27678_$t.txt &
echo -n "$t 32 131072 2 128 32768 32 - 1390592 - " > ./results/cachesim_result_27679_$t.txt
./cachesim $t 32 131072 2 128 32768 32 >> ./results/cachesim_result_27679_$t.txt &
echo -n "$t 32 131072 2 256 32768 32 - 1387520 - " > ./results/cachesim_result_27680_$t.txt
./cachesim $t 32 131072 2 256 32768 32 >> ./results/cachesim_result_27680_$t.txt &
echo -n "$t 32 131072 2 512 32768 32 - 1385984 - " > ./results/cachesim_result_27681_$t.txt
./cachesim $t 32 131072 2 512 32768 32 >> ./results/cachesim_result_27681_$t.txt &
echo -n "$t 32 131072 2 1024 32768 32 - 1385216 - " > ./results/cachesim_result_27682_$t.txt
./cachesim $t 32 131072 2 1024 32768 32 >> ./results/cachesim_result_27682_$t.txt &
echo -n "$t 64 131072 2 64 4096 1 - 1119616 - " > ./results/cachesim_result_27683_$t.txt
./cachesim $t 64 131072 2 64 4096 1 >> ./results/cachesim_result_27683_$t.txt &
echo -n "$t 64 131072 2 128 4096 1 - 1118912 - " > ./results/cachesim_result_27684_$t.txt
./cachesim $t 64 131072 2 128 4096 1 >> ./results/cachesim_result_27684_$t.txt &
echo -n "$t 64 131072 2 256 4096 1 - 1118560 - " > ./results/cachesim_result_27685_$t.txt
./cachesim $t 64 131072 2 256 4096 1 >> ./results/cachesim_result_27685_$t.txt &
echo -n "$t 64 131072 2 512 4096 1 - 1118384 - " > ./results/cachesim_result_27686_$t.txt
./cachesim $t 64 131072 2 512 4096 1 >> ./results/cachesim_result_27686_$t.txt &
echo -n "$t 64 131072 2 1024 4096 1 - 1118296 - " > ./results/cachesim_result_27687_$t.txt
./cachesim $t 64 131072 2 1024 4096 1 >> ./results/cachesim_result_27687_$t.txt &
echo -n "$t 64 131072 2 64 4096 2 - 1119680 - " > ./results/cachesim_result_27688_$t.txt
./cachesim $t 64 131072 2 64 4096 2 >> ./results/cachesim_result_27688_$t.txt &
echo -n "$t 64 131072 2 128 4096 2 - 1118944 - " > ./results/cachesim_result_27689_$t.txt
./cachesim $t 64 131072 2 128 4096 2 >> ./results/cachesim_result_27689_$t.txt &
echo -n "$t 64 131072 2 256 4096 2 - 1118576 - " > ./results/cachesim_result_27690_$t.txt
./cachesim $t 64 131072 2 256 4096 2 >> ./results/cachesim_result_27690_$t.txt &
echo -n "$t 64 131072 2 512 4096 2 - 1118392 - " > ./results/cachesim_result_27691_$t.txt
./cachesim $t 64 131072 2 512 4096 2 >> ./results/cachesim_result_27691_$t.txt &
echo -n "$t 64 131072 2 1024 4096 2 - 1118300 - " > ./results/cachesim_result_27692_$t.txt
./cachesim $t 64 131072 2 1024 4096 2 >> ./results/cachesim_result_27692_$t.txt &
echo -n "$t 64 131072 2 64 4096 4 - 1119744 - " > ./results/cachesim_result_27693_$t.txt
./cachesim $t 64 131072 2 64 4096 4 >> ./results/cachesim_result_27693_$t.txt &
echo -n "$t 64 131072 2 128 4096 4 - 1118976 - " > ./results/cachesim_result_27694_$t.txt
./cachesim $t 64 131072 2 128 4096 4 >> ./results/cachesim_result_27694_$t.txt &
echo -n "$t 64 131072 2 256 4096 4 - 1118592 - " > ./results/cachesim_result_27695_$t.txt
./cachesim $t 64 131072 2 256 4096 4 >> ./results/cachesim_result_27695_$t.txt &
echo -n "$t 64 131072 2 512 4096 4 - 1118400 - " > ./results/cachesim_result_27696_$t.txt
./cachesim $t 64 131072 2 512 4096 4 >> ./results/cachesim_result_27696_$t.txt &
echo -n "$t 64 131072 2 1024 4096 4 - 1118304 - " > ./results/cachesim_result_27697_$t.txt
./cachesim $t 64 131072 2 1024 4096 4 >> ./results/cachesim_result_27697_$t.txt &
echo -n "$t 64 131072 2 64 4096 8 - 1119808 - " > ./results/cachesim_result_27698_$t.txt
./cachesim $t 64 131072 2 64 4096 8 >> ./results/cachesim_result_27698_$t.txt &
echo -n "$t 64 131072 2 128 4096 8 - 1119008 - " > ./results/cachesim_result_27699_$t.txt
./cachesim $t 64 131072 2 128 4096 8 >> ./results/cachesim_result_27699_$t.txt &
echo -n "$t 64 131072 2 256 4096 8 - 1118608 - " > ./results/cachesim_result_27700_$t.txt
./cachesim $t 64 131072 2 256 4096 8 >> ./results/cachesim_result_27700_$t.txt &
echo -n "$t 64 131072 2 512 4096 8 - 1118408 - " > ./results/cachesim_result_27701_$t.txt
./cachesim $t 64 131072 2 512 4096 8 >> ./results/cachesim_result_27701_$t.txt &
echo -n "$t 64 131072 2 64 4096 16 - 1119872 - " > ./results/cachesim_result_27702_$t.txt
./cachesim $t 64 131072 2 64 4096 16 >> ./results/cachesim_result_27702_$t.txt &
echo -n "$t 64 131072 2 128 4096 16 - 1119040 - " > ./results/cachesim_result_27703_$t.txt
./cachesim $t 64 131072 2 128 4096 16 >> ./results/cachesim_result_27703_$t.txt &
echo -n "$t 64 131072 2 256 4096 16 - 1118624 - " > ./results/cachesim_result_27704_$t.txt
./cachesim $t 64 131072 2 256 4096 16 >> ./results/cachesim_result_27704_$t.txt &
echo -n "$t 64 131072 2 64 4096 32 - 1119936 - " > ./results/cachesim_result_27705_$t.txt
./cachesim $t 64 131072 2 64 4096 32 >> ./results/cachesim_result_27705_$t.txt &
echo -n "$t 64 131072 2 128 4096 32 - 1119072 - " > ./results/cachesim_result_27706_$t.txt
./cachesim $t 64 131072 2 128 4096 32 >> ./results/cachesim_result_27706_$t.txt &
echo -n "$t 64 131072 2 64 8192 1 - 1153664 - " > ./results/cachesim_result_27707_$t.txt
./cachesim $t 64 131072 2 64 8192 1 >> ./results/cachesim_result_27707_$t.txt &
echo -n "$t 64 131072 2 128 8192 1 - 1152320 - " > ./results/cachesim_result_27708_$t.txt
./cachesim $t 64 131072 2 128 8192 1 >> ./results/cachesim_result_27708_$t.txt &
echo -n "$t 64 131072 2 256 8192 1 - 1151648 - " > ./results/cachesim_result_27709_$t.txt
./cachesim $t 64 131072 2 256 8192 1 >> ./results/cachesim_result_27709_$t.txt &
echo -n "$t 64 131072 2 512 8192 1 - 1151312 - " > ./results/cachesim_result_27710_$t.txt
./cachesim $t 64 131072 2 512 8192 1 >> ./results/cachesim_result_27710_$t.txt &
echo -n "$t 64 131072 2 1024 8192 1 - 1151144 - " > ./results/cachesim_result_27711_$t.txt
./cachesim $t 64 131072 2 1024 8192 1 >> ./results/cachesim_result_27711_$t.txt &
echo -n "$t 64 131072 2 64 8192 2 - 1153792 - " > ./results/cachesim_result_27712_$t.txt
./cachesim $t 64 131072 2 64 8192 2 >> ./results/cachesim_result_27712_$t.txt &
echo -n "$t 64 131072 2 128 8192 2 - 1152384 - " > ./results/cachesim_result_27713_$t.txt
./cachesim $t 64 131072 2 128 8192 2 >> ./results/cachesim_result_27713_$t.txt &
echo -n "$t 64 131072 2 256 8192 2 - 1151680 - " > ./results/cachesim_result_27714_$t.txt
./cachesim $t 64 131072 2 256 8192 2 >> ./results/cachesim_result_27714_$t.txt &
echo -n "$t 64 131072 2 512 8192 2 - 1151328 - " > ./results/cachesim_result_27715_$t.txt
./cachesim $t 64 131072 2 512 8192 2 >> ./results/cachesim_result_27715_$t.txt &
echo -n "$t 64 131072 2 1024 8192 2 - 1151152 - " > ./results/cachesim_result_27716_$t.txt
./cachesim $t 64 131072 2 1024 8192 2 >> ./results/cachesim_result_27716_$t.txt &
echo -n "$t 64 131072 2 64 8192 4 - 1153920 - " > ./results/cachesim_result_27717_$t.txt
./cachesim $t 64 131072 2 64 8192 4 >> ./results/cachesim_result_27717_$t.txt &
echo -n "$t 64 131072 2 128 8192 4 - 1152448 - " > ./results/cachesim_result_27718_$t.txt
./cachesim $t 64 131072 2 128 8192 4 >> ./results/cachesim_result_27718_$t.txt &
echo -n "$t 64 131072 2 256 8192 4 - 1151712 - " > ./results/cachesim_result_27719_$t.txt
./cachesim $t 64 131072 2 256 8192 4 >> ./results/cachesim_result_27719_$t.txt &
echo -n "$t 64 131072 2 512 8192 4 - 1151344 - " > ./results/cachesim_result_27720_$t.txt
./cachesim $t 64 131072 2 512 8192 4 >> ./results/cachesim_result_27720_$t.txt &
echo -n "$t 64 131072 2 1024 8192 4 - 1151160 - " > ./results/cachesim_result_27721_$t.txt
./cachesim $t 64 131072 2 1024 8192 4 >> ./results/cachesim_result_27721_$t.txt &
echo -n "$t 64 131072 2 64 8192 8 - 1154048 - " > ./results/cachesim_result_27722_$t.txt
./cachesim $t 64 131072 2 64 8192 8 >> ./results/cachesim_result_27722_$t.txt &
echo -n "$t 64 131072 2 128 8192 8 - 1152512 - " > ./results/cachesim_result_27723_$t.txt
./cachesim $t 64 131072 2 128 8192 8 >> ./results/cachesim_result_27723_$t.txt &
echo -n "$t 64 131072 2 256 8192 8 - 1151744 - " > ./results/cachesim_result_27724_$t.txt
./cachesim $t 64 131072 2 256 8192 8 >> ./results/cachesim_result_27724_$t.txt &
echo -n "$t 64 131072 2 512 8192 8 - 1151360 - " > ./results/cachesim_result_27725_$t.txt
./cachesim $t 64 131072 2 512 8192 8 >> ./results/cachesim_result_27725_$t.txt &
echo -n "$t 64 131072 2 1024 8192 8 - 1151168 - " > ./results/cachesim_result_27726_$t.txt
./cachesim $t 64 131072 2 1024 8192 8 >> ./results/cachesim_result_27726_$t.txt &
echo -n "$t 64 131072 2 64 8192 16 - 1154176 - " > ./results/cachesim_result_27727_$t.txt
./cachesim $t 64 131072 2 64 8192 16 >> ./results/cachesim_result_27727_$t.txt &
echo -n "$t 64 131072 2 128 8192 16 - 1152576 - " > ./results/cachesim_result_27728_$t.txt
./cachesim $t 64 131072 2 128 8192 16 >> ./results/cachesim_result_27728_$t.txt &
echo -n "$t 64 131072 2 256 8192 16 - 1151776 - " > ./results/cachesim_result_27729_$t.txt
./cachesim $t 64 131072 2 256 8192 16 >> ./results/cachesim_result_27729_$t.txt &
echo -n "$t 64 131072 2 512 8192 16 - 1151376 - " > ./results/cachesim_result_27730_$t.txt
./cachesim $t 64 131072 2 512 8192 16 >> ./results/cachesim_result_27730_$t.txt &
echo -n "$t 64 131072 2 64 8192 32 - 1154304 - " > ./results/cachesim_result_27731_$t.txt
./cachesim $t 64 131072 2 64 8192 32 >> ./results/cachesim_result_27731_$t.txt &
echo -n "$t 64 131072 2 128 8192 32 - 1152640 - " > ./results/cachesim_result_27732_$t.txt
./cachesim $t 64 131072 2 128 8192 32 >> ./results/cachesim_result_27732_$t.txt &
echo -n "$t 64 131072 2 256 8192 32 - 1151808 - " > ./results/cachesim_result_27733_$t.txt
./cachesim $t 64 131072 2 256 8192 32 >> ./results/cachesim_result_27733_$t.txt &
echo -n "$t 64 131072 2 64 16384 1 - 1221632 - " > ./results/cachesim_result_27734_$t.txt
./cachesim $t 64 131072 2 64 16384 1 >> ./results/cachesim_result_27734_$t.txt &
echo -n "$t 64 131072 2 128 16384 1 - 1219072 - " > ./results/cachesim_result_27735_$t.txt
./cachesim $t 64 131072 2 128 16384 1 >> ./results/cachesim_result_27735_$t.txt &
echo -n "$t 64 131072 2 256 16384 1 - 1217792 - " > ./results/cachesim_result_27736_$t.txt
./cachesim $t 64 131072 2 256 16384 1 >> ./results/cachesim_result_27736_$t.txt &
echo -n "$t 64 131072 2 512 16384 1 - 1217152 - " > ./results/cachesim_result_27737_$t.txt
./cachesim $t 64 131072 2 512 16384 1 >> ./results/cachesim_result_27737_$t.txt &
echo -n "$t 64 131072 2 1024 16384 1 - 1216832 - " > ./results/cachesim_result_27738_$t.txt
./cachesim $t 64 131072 2 1024 16384 1 >> ./results/cachesim_result_27738_$t.txt &
echo -n "$t 64 131072 2 64 16384 2 - 1221888 - " > ./results/cachesim_result_27739_$t.txt
./cachesim $t 64 131072 2 64 16384 2 >> ./results/cachesim_result_27739_$t.txt &
echo -n "$t 64 131072 2 128 16384 2 - 1219200 - " > ./results/cachesim_result_27740_$t.txt
./cachesim $t 64 131072 2 128 16384 2 >> ./results/cachesim_result_27740_$t.txt &
echo -n "$t 64 131072 2 256 16384 2 - 1217856 - " > ./results/cachesim_result_27741_$t.txt
./cachesim $t 64 131072 2 256 16384 2 >> ./results/cachesim_result_27741_$t.txt &
echo -n "$t 64 131072 2 512 16384 2 - 1217184 - " > ./results/cachesim_result_27742_$t.txt
./cachesim $t 64 131072 2 512 16384 2 >> ./results/cachesim_result_27742_$t.txt &
echo -n "$t 64 131072 2 1024 16384 2 - 1216848 - " > ./results/cachesim_result_27743_$t.txt
./cachesim $t 64 131072 2 1024 16384 2 >> ./results/cachesim_result_27743_$t.txt &
echo -n "$t 64 131072 2 64 16384 4 - 1222144 - " > ./results/cachesim_result_27744_$t.txt
./cachesim $t 64 131072 2 64 16384 4 >> ./results/cachesim_result_27744_$t.txt &
echo -n "$t 64 131072 2 128 16384 4 - 1219328 - " > ./results/cachesim_result_27745_$t.txt
./cachesim $t 64 131072 2 128 16384 4 >> ./results/cachesim_result_27745_$t.txt &
echo -n "$t 64 131072 2 256 16384 4 - 1217920 - " > ./results/cachesim_result_27746_$t.txt
./cachesim $t 64 131072 2 256 16384 4 >> ./results/cachesim_result_27746_$t.txt &
echo -n "$t 64 131072 2 512 16384 4 - 1217216 - " > ./results/cachesim_result_27747_$t.txt
./cachesim $t 64 131072 2 512 16384 4 >> ./results/cachesim_result_27747_$t.txt &
echo -n "$t 64 131072 2 1024 16384 4 - 1216864 - " > ./results/cachesim_result_27748_$t.txt
./cachesim $t 64 131072 2 1024 16384 4 >> ./results/cachesim_result_27748_$t.txt &
echo -n "$t 64 131072 2 64 16384 8 - 1222400 - " > ./results/cachesim_result_27749_$t.txt
./cachesim $t 64 131072 2 64 16384 8 >> ./results/cachesim_result_27749_$t.txt &
echo -n "$t 64 131072 2 128 16384 8 - 1219456 - " > ./results/cachesim_result_27750_$t.txt
./cachesim $t 64 131072 2 128 16384 8 >> ./results/cachesim_result_27750_$t.txt &
echo -n "$t 64 131072 2 256 16384 8 - 1217984 - " > ./results/cachesim_result_27751_$t.txt
./cachesim $t 64 131072 2 256 16384 8 >> ./results/cachesim_result_27751_$t.txt &
echo -n "$t 64 131072 2 512 16384 8 - 1217248 - " > ./results/cachesim_result_27752_$t.txt
./cachesim $t 64 131072 2 512 16384 8 >> ./results/cachesim_result_27752_$t.txt &
echo -n "$t 64 131072 2 1024 16384 8 - 1216880 - " > ./results/cachesim_result_27753_$t.txt
./cachesim $t 64 131072 2 1024 16384 8 >> ./results/cachesim_result_27753_$t.txt &
echo -n "$t 64 131072 2 64 16384 16 - 1222656 - " > ./results/cachesim_result_27754_$t.txt
./cachesim $t 64 131072 2 64 16384 16 >> ./results/cachesim_result_27754_$t.txt &
echo -n "$t 64 131072 2 128 16384 16 - 1219584 - " > ./results/cachesim_result_27755_$t.txt
./cachesim $t 64 131072 2 128 16384 16 >> ./results/cachesim_result_27755_$t.txt &
echo -n "$t 64 131072 2 256 16384 16 - 1218048 - " > ./results/cachesim_result_27756_$t.txt
./cachesim $t 64 131072 2 256 16384 16 >> ./results/cachesim_result_27756_$t.txt &
echo -n "$t 64 131072 2 512 16384 16 - 1217280 - " > ./results/cachesim_result_27757_$t.txt
./cachesim $t 64 131072 2 512 16384 16 >> ./results/cachesim_result_27757_$t.txt &
echo -n "$t 64 131072 2 1024 16384 16 - 1216896 - " > ./results/cachesim_result_27758_$t.txt
./cachesim $t 64 131072 2 1024 16384 16 >> ./results/cachesim_result_27758_$t.txt &
echo -n "$t 64 131072 2 64 16384 32 - 1222912 - " > ./results/cachesim_result_27759_$t.txt
./cachesim $t 64 131072 2 64 16384 32 >> ./results/cachesim_result_27759_$t.txt &
echo -n "$t 64 131072 2 128 16384 32 - 1219712 - " > ./results/cachesim_result_27760_$t.txt
./cachesim $t 64 131072 2 128 16384 32 >> ./results/cachesim_result_27760_$t.txt &
echo -n "$t 64 131072 2 256 16384 32 - 1218112 - " > ./results/cachesim_result_27761_$t.txt
./cachesim $t 64 131072 2 256 16384 32 >> ./results/cachesim_result_27761_$t.txt &
echo -n "$t 64 131072 2 512 16384 32 - 1217312 - " > ./results/cachesim_result_27762_$t.txt
./cachesim $t 64 131072 2 512 16384 32 >> ./results/cachesim_result_27762_$t.txt &
echo -n "$t 64 131072 2 64 32768 1 - 1357312 - " > ./results/cachesim_result_27763_$t.txt
./cachesim $t 64 131072 2 64 32768 1 >> ./results/cachesim_result_27763_$t.txt &
echo -n "$t 64 131072 2 128 32768 1 - 1352448 - " > ./results/cachesim_result_27764_$t.txt
./cachesim $t 64 131072 2 128 32768 1 >> ./results/cachesim_result_27764_$t.txt &
echo -n "$t 64 131072 2 256 32768 1 - 1350016 - " > ./results/cachesim_result_27765_$t.txt
./cachesim $t 64 131072 2 256 32768 1 >> ./results/cachesim_result_27765_$t.txt &
echo -n "$t 64 131072 2 512 32768 1 - 1348800 - " > ./results/cachesim_result_27766_$t.txt
./cachesim $t 64 131072 2 512 32768 1 >> ./results/cachesim_result_27766_$t.txt &
echo -n "$t 64 131072 2 1024 32768 1 - 1348192 - " > ./results/cachesim_result_27767_$t.txt
./cachesim $t 64 131072 2 1024 32768 1 >> ./results/cachesim_result_27767_$t.txt &
echo -n "$t 64 131072 2 64 32768 2 - 1357824 - " > ./results/cachesim_result_27768_$t.txt
./cachesim $t 64 131072 2 64 32768 2 >> ./results/cachesim_result_27768_$t.txt &
echo -n "$t 64 131072 2 128 32768 2 - 1352704 - " > ./results/cachesim_result_27769_$t.txt
./cachesim $t 64 131072 2 128 32768 2 >> ./results/cachesim_result_27769_$t.txt &
echo -n "$t 64 131072 2 256 32768 2 - 1350144 - " > ./results/cachesim_result_27770_$t.txt
./cachesim $t 64 131072 2 256 32768 2 >> ./results/cachesim_result_27770_$t.txt &
echo -n "$t 64 131072 2 512 32768 2 - 1348864 - " > ./results/cachesim_result_27771_$t.txt
./cachesim $t 64 131072 2 512 32768 2 >> ./results/cachesim_result_27771_$t.txt &
echo -n "$t 64 131072 2 1024 32768 2 - 1348224 - " > ./results/cachesim_result_27772_$t.txt
./cachesim $t 64 131072 2 1024 32768 2 >> ./results/cachesim_result_27772_$t.txt &
echo -n "$t 64 131072 2 64 32768 4 - 1358336 - " > ./results/cachesim_result_27773_$t.txt
./cachesim $t 64 131072 2 64 32768 4 >> ./results/cachesim_result_27773_$t.txt &
echo -n "$t 64 131072 2 128 32768 4 - 1352960 - " > ./results/cachesim_result_27774_$t.txt
./cachesim $t 64 131072 2 128 32768 4 >> ./results/cachesim_result_27774_$t.txt &
echo -n "$t 64 131072 2 256 32768 4 - 1350272 - " > ./results/cachesim_result_27775_$t.txt
./cachesim $t 64 131072 2 256 32768 4 >> ./results/cachesim_result_27775_$t.txt &
echo -n "$t 64 131072 2 512 32768 4 - 1348928 - " > ./results/cachesim_result_27776_$t.txt
./cachesim $t 64 131072 2 512 32768 4 >> ./results/cachesim_result_27776_$t.txt &
echo -n "$t 64 131072 2 1024 32768 4 - 1348256 - " > ./results/cachesim_result_27777_$t.txt
./cachesim $t 64 131072 2 1024 32768 4 >> ./results/cachesim_result_27777_$t.txt &
echo -n "$t 64 131072 2 64 32768 8 - 1358848 - " > ./results/cachesim_result_27778_$t.txt
./cachesim $t 64 131072 2 64 32768 8 >> ./results/cachesim_result_27778_$t.txt &
echo -n "$t 64 131072 2 128 32768 8 - 1353216 - " > ./results/cachesim_result_27779_$t.txt
./cachesim $t 64 131072 2 128 32768 8 >> ./results/cachesim_result_27779_$t.txt &
echo -n "$t 64 131072 2 256 32768 8 - 1350400 - " > ./results/cachesim_result_27780_$t.txt
./cachesim $t 64 131072 2 256 32768 8 >> ./results/cachesim_result_27780_$t.txt &
echo -n "$t 64 131072 2 512 32768 8 - 1348992 - " > ./results/cachesim_result_27781_$t.txt
./cachesim $t 64 131072 2 512 32768 8 >> ./results/cachesim_result_27781_$t.txt &
echo -n "$t 64 131072 2 1024 32768 8 - 1348288 - " > ./results/cachesim_result_27782_$t.txt
./cachesim $t 64 131072 2 1024 32768 8 >> ./results/cachesim_result_27782_$t.txt &
echo -n "$t 64 131072 2 64 32768 16 - 1359360 - " > ./results/cachesim_result_27783_$t.txt
./cachesim $t 64 131072 2 64 32768 16 >> ./results/cachesim_result_27783_$t.txt &
echo -n "$t 64 131072 2 128 32768 16 - 1353472 - " > ./results/cachesim_result_27784_$t.txt
./cachesim $t 64 131072 2 128 32768 16 >> ./results/cachesim_result_27784_$t.txt &
echo -n "$t 64 131072 2 256 32768 16 - 1350528 - " > ./results/cachesim_result_27785_$t.txt
./cachesim $t 64 131072 2 256 32768 16 >> ./results/cachesim_result_27785_$t.txt &
echo -n "$t 64 131072 2 512 32768 16 - 1349056 - " > ./results/cachesim_result_27786_$t.txt
./cachesim $t 64 131072 2 512 32768 16 >> ./results/cachesim_result_27786_$t.txt &
echo -n "$t 64 131072 2 1024 32768 16 - 1348320 - " > ./results/cachesim_result_27787_$t.txt
./cachesim $t 64 131072 2 1024 32768 16 >> ./results/cachesim_result_27787_$t.txt &
echo -n "$t 64 131072 2 64 32768 32 - 1359872 - " > ./results/cachesim_result_27788_$t.txt
./cachesim $t 64 131072 2 64 32768 32 >> ./results/cachesim_result_27788_$t.txt &
echo -n "$t 64 131072 2 128 32768 32 - 1353728 - " > ./results/cachesim_result_27789_$t.txt
./cachesim $t 64 131072 2 128 32768 32 >> ./results/cachesim_result_27789_$t.txt &
echo -n "$t 64 131072 2 256 32768 32 - 1350656 - " > ./results/cachesim_result_27790_$t.txt
./cachesim $t 64 131072 2 256 32768 32 >> ./results/cachesim_result_27790_$t.txt &
echo -n "$t 64 131072 2 512 32768 32 - 1349120 - " > ./results/cachesim_result_27791_$t.txt
./cachesim $t 64 131072 2 512 32768 32 >> ./results/cachesim_result_27791_$t.txt &
echo -n "$t 64 131072 2 1024 32768 32 - 1348352 - " > ./results/cachesim_result_27792_$t.txt
./cachesim $t 64 131072 2 1024 32768 32 >> ./results/cachesim_result_27792_$t.txt &
echo -n "$t 128 131072 2 128 4096 1 - 1100480 - " > ./results/cachesim_result_27793_$t.txt
./cachesim $t 128 131072 2 128 4096 1 >> ./results/cachesim_result_27793_$t.txt &
echo -n "$t 128 131072 2 256 4096 1 - 1100128 - " > ./results/cachesim_result_27794_$t.txt
./cachesim $t 128 131072 2 256 4096 1 >> ./results/cachesim_result_27794_$t.txt &
echo -n "$t 128 131072 2 512 4096 1 - 1099952 - " > ./results/cachesim_result_27795_$t.txt
./cachesim $t 128 131072 2 512 4096 1 >> ./results/cachesim_result_27795_$t.txt &
echo -n "$t 128 131072 2 1024 4096 1 - 1099864 - " > ./results/cachesim_result_27796_$t.txt
./cachesim $t 128 131072 2 1024 4096 1 >> ./results/cachesim_result_27796_$t.txt &
echo -n "$t 128 131072 2 128 4096 2 - 1100512 - " > ./results/cachesim_result_27797_$t.txt
./cachesim $t 128 131072 2 128 4096 2 >> ./results/cachesim_result_27797_$t.txt &
echo -n "$t 128 131072 2 256 4096 2 - 1100144 - " > ./results/cachesim_result_27798_$t.txt
./cachesim $t 128 131072 2 256 4096 2 >> ./results/cachesim_result_27798_$t.txt &
echo -n "$t 128 131072 2 512 4096 2 - 1099960 - " > ./results/cachesim_result_27799_$t.txt
./cachesim $t 128 131072 2 512 4096 2 >> ./results/cachesim_result_27799_$t.txt &
echo -n "$t 128 131072 2 1024 4096 2 - 1099868 - " > ./results/cachesim_result_27800_$t.txt
./cachesim $t 128 131072 2 1024 4096 2 >> ./results/cachesim_result_27800_$t.txt &
echo -n "$t 128 131072 2 128 4096 4 - 1100544 - " > ./results/cachesim_result_27801_$t.txt
./cachesim $t 128 131072 2 128 4096 4 >> ./results/cachesim_result_27801_$t.txt &
echo -n "$t 128 131072 2 256 4096 4 - 1100160 - " > ./results/cachesim_result_27802_$t.txt
./cachesim $t 128 131072 2 256 4096 4 >> ./results/cachesim_result_27802_$t.txt &
echo -n "$t 128 131072 2 512 4096 4 - 1099968 - " > ./results/cachesim_result_27803_$t.txt
./cachesim $t 128 131072 2 512 4096 4 >> ./results/cachesim_result_27803_$t.txt &
echo -n "$t 128 131072 2 1024 4096 4 - 1099872 - " > ./results/cachesim_result_27804_$t.txt
./cachesim $t 128 131072 2 1024 4096 4 >> ./results/cachesim_result_27804_$t.txt &
echo -n "$t 128 131072 2 128 4096 8 - 1100576 - " > ./results/cachesim_result_27805_$t.txt
./cachesim $t 128 131072 2 128 4096 8 >> ./results/cachesim_result_27805_$t.txt &
echo -n "$t 128 131072 2 256 4096 8 - 1100176 - " > ./results/cachesim_result_27806_$t.txt
./cachesim $t 128 131072 2 256 4096 8 >> ./results/cachesim_result_27806_$t.txt &
echo -n "$t 128 131072 2 512 4096 8 - 1099976 - " > ./results/cachesim_result_27807_$t.txt
./cachesim $t 128 131072 2 512 4096 8 >> ./results/cachesim_result_27807_$t.txt &
echo -n "$t 128 131072 2 128 4096 16 - 1100608 - " > ./results/cachesim_result_27808_$t.txt
./cachesim $t 128 131072 2 128 4096 16 >> ./results/cachesim_result_27808_$t.txt &
echo -n "$t 128 131072 2 256 4096 16 - 1100192 - " > ./results/cachesim_result_27809_$t.txt
./cachesim $t 128 131072 2 256 4096 16 >> ./results/cachesim_result_27809_$t.txt &
echo -n "$t 128 131072 2 128 4096 32 - 1100640 - " > ./results/cachesim_result_27810_$t.txt
./cachesim $t 128 131072 2 128 4096 32 >> ./results/cachesim_result_27810_$t.txt &
echo -n "$t 128 131072 2 128 8192 1 - 1133888 - " > ./results/cachesim_result_27811_$t.txt
./cachesim $t 128 131072 2 128 8192 1 >> ./results/cachesim_result_27811_$t.txt &
echo -n "$t 128 131072 2 256 8192 1 - 1133216 - " > ./results/cachesim_result_27812_$t.txt
./cachesim $t 128 131072 2 256 8192 1 >> ./results/cachesim_result_27812_$t.txt &
echo -n "$t 128 131072 2 512 8192 1 - 1132880 - " > ./results/cachesim_result_27813_$t.txt
./cachesim $t 128 131072 2 512 8192 1 >> ./results/cachesim_result_27813_$t.txt &
echo -n "$t 128 131072 2 1024 8192 1 - 1132712 - " > ./results/cachesim_result_27814_$t.txt
./cachesim $t 128 131072 2 1024 8192 1 >> ./results/cachesim_result_27814_$t.txt &
echo -n "$t 128 131072 2 128 8192 2 - 1133952 - " > ./results/cachesim_result_27815_$t.txt
./cachesim $t 128 131072 2 128 8192 2 >> ./results/cachesim_result_27815_$t.txt &
echo -n "$t 128 131072 2 256 8192 2 - 1133248 - " > ./results/cachesim_result_27816_$t.txt
./cachesim $t 128 131072 2 256 8192 2 >> ./results/cachesim_result_27816_$t.txt &
echo -n "$t 128 131072 2 512 8192 2 - 1132896 - " > ./results/cachesim_result_27817_$t.txt
./cachesim $t 128 131072 2 512 8192 2 >> ./results/cachesim_result_27817_$t.txt &
echo -n "$t 128 131072 2 1024 8192 2 - 1132720 - " > ./results/cachesim_result_27818_$t.txt
./cachesim $t 128 131072 2 1024 8192 2 >> ./results/cachesim_result_27818_$t.txt &
echo -n "$t 128 131072 2 128 8192 4 - 1134016 - " > ./results/cachesim_result_27819_$t.txt
./cachesim $t 128 131072 2 128 8192 4 >> ./results/cachesim_result_27819_$t.txt &
echo -n "$t 128 131072 2 256 8192 4 - 1133280 - " > ./results/cachesim_result_27820_$t.txt
./cachesim $t 128 131072 2 256 8192 4 >> ./results/cachesim_result_27820_$t.txt &
echo -n "$t 128 131072 2 512 8192 4 - 1132912 - " > ./results/cachesim_result_27821_$t.txt
./cachesim $t 128 131072 2 512 8192 4 >> ./results/cachesim_result_27821_$t.txt &
echo -n "$t 128 131072 2 1024 8192 4 - 1132728 - " > ./results/cachesim_result_27822_$t.txt
./cachesim $t 128 131072 2 1024 8192 4 >> ./results/cachesim_result_27822_$t.txt &
echo -n "$t 128 131072 2 128 8192 8 - 1134080 - " > ./results/cachesim_result_27823_$t.txt
./cachesim $t 128 131072 2 128 8192 8 >> ./results/cachesim_result_27823_$t.txt &
echo -n "$t 128 131072 2 256 8192 8 - 1133312 - " > ./results/cachesim_result_27824_$t.txt
./cachesim $t 128 131072 2 256 8192 8 >> ./results/cachesim_result_27824_$t.txt &
echo -n "$t 128 131072 2 512 8192 8 - 1132928 - " > ./results/cachesim_result_27825_$t.txt
./cachesim $t 128 131072 2 512 8192 8 >> ./results/cachesim_result_27825_$t.txt &
echo -n "$t 128 131072 2 1024 8192 8 - 1132736 - " > ./results/cachesim_result_27826_$t.txt
./cachesim $t 128 131072 2 1024 8192 8 >> ./results/cachesim_result_27826_$t.txt &
echo -n "$t 128 131072 2 128 8192 16 - 1134144 - " > ./results/cachesim_result_27827_$t.txt
./cachesim $t 128 131072 2 128 8192 16 >> ./results/cachesim_result_27827_$t.txt &
echo -n "$t 128 131072 2 256 8192 16 - 1133344 - " > ./results/cachesim_result_27828_$t.txt
./cachesim $t 128 131072 2 256 8192 16 >> ./results/cachesim_result_27828_$t.txt &
echo -n "$t 128 131072 2 512 8192 16 - 1132944 - " > ./results/cachesim_result_27829_$t.txt
./cachesim $t 128 131072 2 512 8192 16 >> ./results/cachesim_result_27829_$t.txt &
echo -n "$t 128 131072 2 128 8192 32 - 1134208 - " > ./results/cachesim_result_27830_$t.txt
./cachesim $t 128 131072 2 128 8192 32 >> ./results/cachesim_result_27830_$t.txt &
echo -n "$t 128 131072 2 256 8192 32 - 1133376 - " > ./results/cachesim_result_27831_$t.txt
./cachesim $t 128 131072 2 256 8192 32 >> ./results/cachesim_result_27831_$t.txt &
echo -n "$t 128 131072 2 128 16384 1 - 1200640 - " > ./results/cachesim_result_27832_$t.txt
./cachesim $t 128 131072 2 128 16384 1 >> ./results/cachesim_result_27832_$t.txt &
echo -n "$t 128 131072 2 256 16384 1 - 1199360 - " > ./results/cachesim_result_27833_$t.txt
./cachesim $t 128 131072 2 256 16384 1 >> ./results/cachesim_result_27833_$t.txt &
echo -n "$t 128 131072 2 512 16384 1 - 1198720 - " > ./results/cachesim_result_27834_$t.txt
./cachesim $t 128 131072 2 512 16384 1 >> ./results/cachesim_result_27834_$t.txt &
echo -n "$t 128 131072 2 1024 16384 1 - 1198400 - " > ./results/cachesim_result_27835_$t.txt
./cachesim $t 128 131072 2 1024 16384 1 >> ./results/cachesim_result_27835_$t.txt &
echo -n "$t 128 131072 2 128 16384 2 - 1200768 - " > ./results/cachesim_result_27836_$t.txt
./cachesim $t 128 131072 2 128 16384 2 >> ./results/cachesim_result_27836_$t.txt &
echo -n "$t 128 131072 2 256 16384 2 - 1199424 - " > ./results/cachesim_result_27837_$t.txt
./cachesim $t 128 131072 2 256 16384 2 >> ./results/cachesim_result_27837_$t.txt &
echo -n "$t 128 131072 2 512 16384 2 - 1198752 - " > ./results/cachesim_result_27838_$t.txt
./cachesim $t 128 131072 2 512 16384 2 >> ./results/cachesim_result_27838_$t.txt &
echo -n "$t 128 131072 2 1024 16384 2 - 1198416 - " > ./results/cachesim_result_27839_$t.txt
./cachesim $t 128 131072 2 1024 16384 2 >> ./results/cachesim_result_27839_$t.txt &
echo -n "$t 128 131072 2 128 16384 4 - 1200896 - " > ./results/cachesim_result_27840_$t.txt
./cachesim $t 128 131072 2 128 16384 4 >> ./results/cachesim_result_27840_$t.txt &
echo -n "$t 128 131072 2 256 16384 4 - 1199488 - " > ./results/cachesim_result_27841_$t.txt
./cachesim $t 128 131072 2 256 16384 4 >> ./results/cachesim_result_27841_$t.txt &
echo -n "$t 128 131072 2 512 16384 4 - 1198784 - " > ./results/cachesim_result_27842_$t.txt
./cachesim $t 128 131072 2 512 16384 4 >> ./results/cachesim_result_27842_$t.txt &
echo -n "$t 128 131072 2 1024 16384 4 - 1198432 - " > ./results/cachesim_result_27843_$t.txt
./cachesim $t 128 131072 2 1024 16384 4 >> ./results/cachesim_result_27843_$t.txt &
echo -n "$t 128 131072 2 128 16384 8 - 1201024 - " > ./results/cachesim_result_27844_$t.txt
./cachesim $t 128 131072 2 128 16384 8 >> ./results/cachesim_result_27844_$t.txt &
echo -n "$t 128 131072 2 256 16384 8 - 1199552 - " > ./results/cachesim_result_27845_$t.txt
./cachesim $t 128 131072 2 256 16384 8 >> ./results/cachesim_result_27845_$t.txt &
echo -n "$t 128 131072 2 512 16384 8 - 1198816 - " > ./results/cachesim_result_27846_$t.txt
./cachesim $t 128 131072 2 512 16384 8 >> ./results/cachesim_result_27846_$t.txt &
echo -n "$t 128 131072 2 1024 16384 8 - 1198448 - " > ./results/cachesim_result_27847_$t.txt
./cachesim $t 128 131072 2 1024 16384 8 >> ./results/cachesim_result_27847_$t.txt &
echo -n "$t 128 131072 2 128 16384 16 - 1201152 - " > ./results/cachesim_result_27848_$t.txt
./cachesim $t 128 131072 2 128 16384 16 >> ./results/cachesim_result_27848_$t.txt &
echo -n "$t 128 131072 2 256 16384 16 - 1199616 - " > ./results/cachesim_result_27849_$t.txt
./cachesim $t 128 131072 2 256 16384 16 >> ./results/cachesim_result_27849_$t.txt &
echo -n "$t 128 131072 2 512 16384 16 - 1198848 - " > ./results/cachesim_result_27850_$t.txt
./cachesim $t 128 131072 2 512 16384 16 >> ./results/cachesim_result_27850_$t.txt &
echo -n "$t 128 131072 2 1024 16384 16 - 1198464 - " > ./results/cachesim_result_27851_$t.txt
./cachesim $t 128 131072 2 1024 16384 16 >> ./results/cachesim_result_27851_$t.txt &
echo -n "$t 128 131072 2 128 16384 32 - 1201280 - " > ./results/cachesim_result_27852_$t.txt
./cachesim $t 128 131072 2 128 16384 32 >> ./results/cachesim_result_27852_$t.txt &
echo -n "$t 128 131072 2 256 16384 32 - 1199680 - " > ./results/cachesim_result_27853_$t.txt
./cachesim $t 128 131072 2 256 16384 32 >> ./results/cachesim_result_27853_$t.txt &
echo -n "$t 128 131072 2 512 16384 32 - 1198880 - " > ./results/cachesim_result_27854_$t.txt
./cachesim $t 128 131072 2 512 16384 32 >> ./results/cachesim_result_27854_$t.txt &
echo -n "$t 128 131072 2 128 32768 1 - 1334016 - " > ./results/cachesim_result_27855_$t.txt
./cachesim $t 128 131072 2 128 32768 1 >> ./results/cachesim_result_27855_$t.txt &
echo -n "$t 128 131072 2 256 32768 1 - 1331584 - " > ./results/cachesim_result_27856_$t.txt
./cachesim $t 128 131072 2 256 32768 1 >> ./results/cachesim_result_27856_$t.txt &
echo -n "$t 128 131072 2 512 32768 1 - 1330368 - " > ./results/cachesim_result_27857_$t.txt
./cachesim $t 128 131072 2 512 32768 1 >> ./results/cachesim_result_27857_$t.txt &
echo -n "$t 128 131072 2 1024 32768 1 - 1329760 - " > ./results/cachesim_result_27858_$t.txt
./cachesim $t 128 131072 2 1024 32768 1 >> ./results/cachesim_result_27858_$t.txt &
echo -n "$t 128 131072 2 128 32768 2 - 1334272 - " > ./results/cachesim_result_27859_$t.txt
./cachesim $t 128 131072 2 128 32768 2 >> ./results/cachesim_result_27859_$t.txt &
echo -n "$t 128 131072 2 256 32768 2 - 1331712 - " > ./results/cachesim_result_27860_$t.txt
./cachesim $t 128 131072 2 256 32768 2 >> ./results/cachesim_result_27860_$t.txt &
echo -n "$t 128 131072 2 512 32768 2 - 1330432 - " > ./results/cachesim_result_27861_$t.txt
./cachesim $t 128 131072 2 512 32768 2 >> ./results/cachesim_result_27861_$t.txt &
echo -n "$t 128 131072 2 1024 32768 2 - 1329792 - " > ./results/cachesim_result_27862_$t.txt
./cachesim $t 128 131072 2 1024 32768 2 >> ./results/cachesim_result_27862_$t.txt &
echo -n "$t 128 131072 2 128 32768 4 - 1334528 - " > ./results/cachesim_result_27863_$t.txt
./cachesim $t 128 131072 2 128 32768 4 >> ./results/cachesim_result_27863_$t.txt &
echo -n "$t 128 131072 2 256 32768 4 - 1331840 - " > ./results/cachesim_result_27864_$t.txt
./cachesim $t 128 131072 2 256 32768 4 >> ./results/cachesim_result_27864_$t.txt &
echo -n "$t 128 131072 2 512 32768 4 - 1330496 - " > ./results/cachesim_result_27865_$t.txt
./cachesim $t 128 131072 2 512 32768 4 >> ./results/cachesim_result_27865_$t.txt &
echo -n "$t 128 131072 2 1024 32768 4 - 1329824 - " > ./results/cachesim_result_27866_$t.txt
./cachesim $t 128 131072 2 1024 32768 4 >> ./results/cachesim_result_27866_$t.txt &
echo -n "$t 128 131072 2 128 32768 8 - 1334784 - " > ./results/cachesim_result_27867_$t.txt
./cachesim $t 128 131072 2 128 32768 8 >> ./results/cachesim_result_27867_$t.txt &
echo -n "$t 128 131072 2 256 32768 8 - 1331968 - " > ./results/cachesim_result_27868_$t.txt
./cachesim $t 128 131072 2 256 32768 8 >> ./results/cachesim_result_27868_$t.txt &
echo -n "$t 128 131072 2 512 32768 8 - 1330560 - " > ./results/cachesim_result_27869_$t.txt
./cachesim $t 128 131072 2 512 32768 8 >> ./results/cachesim_result_27869_$t.txt &
echo -n "$t 128 131072 2 1024 32768 8 - 1329856 - " > ./results/cachesim_result_27870_$t.txt
./cachesim $t 128 131072 2 1024 32768 8 >> ./results/cachesim_result_27870_$t.txt &
echo -n "$t 128 131072 2 128 32768 16 - 1335040 - " > ./results/cachesim_result_27871_$t.txt
./cachesim $t 128 131072 2 128 32768 16 >> ./results/cachesim_result_27871_$t.txt &
echo -n "$t 128 131072 2 256 32768 16 - 1332096 - " > ./results/cachesim_result_27872_$t.txt
./cachesim $t 128 131072 2 256 32768 16 >> ./results/cachesim_result_27872_$t.txt &
echo -n "$t 128 131072 2 512 32768 16 - 1330624 - " > ./results/cachesim_result_27873_$t.txt
./cachesim $t 128 131072 2 512 32768 16 >> ./results/cachesim_result_27873_$t.txt &
echo -n "$t 128 131072 2 1024 32768 16 - 1329888 - " > ./results/cachesim_result_27874_$t.txt
./cachesim $t 128 131072 2 1024 32768 16 >> ./results/cachesim_result_27874_$t.txt &
echo -n "$t 128 131072 2 128 32768 32 - 1335296 - " > ./results/cachesim_result_27875_$t.txt
./cachesim $t 128 131072 2 128 32768 32 >> ./results/cachesim_result_27875_$t.txt &
echo -n "$t 128 131072 2 256 32768 32 - 1332224 - " > ./results/cachesim_result_27876_$t.txt
./cachesim $t 128 131072 2 256 32768 32 >> ./results/cachesim_result_27876_$t.txt &
echo -n "$t 128 131072 2 512 32768 32 - 1330688 - " > ./results/cachesim_result_27877_$t.txt
./cachesim $t 128 131072 2 512 32768 32 >> ./results/cachesim_result_27877_$t.txt &
echo -n "$t 128 131072 2 1024 32768 32 - 1329920 - " > ./results/cachesim_result_27878_$t.txt
./cachesim $t 128 131072 2 1024 32768 32 >> ./results/cachesim_result_27878_$t.txt &
echo -n "$t 256 131072 2 256 4096 1 - 1090912 - " > ./results/cachesim_result_27879_$t.txt
./cachesim $t 256 131072 2 256 4096 1 >> ./results/cachesim_result_27879_$t.txt &
echo -n "$t 256 131072 2 512 4096 1 - 1090736 - " > ./results/cachesim_result_27880_$t.txt
./cachesim $t 256 131072 2 512 4096 1 >> ./results/cachesim_result_27880_$t.txt &
echo -n "$t 256 131072 2 1024 4096 1 - 1090648 - " > ./results/cachesim_result_27881_$t.txt
./cachesim $t 256 131072 2 1024 4096 1 >> ./results/cachesim_result_27881_$t.txt &
echo -n "$t 256 131072 2 256 4096 2 - 1090928 - " > ./results/cachesim_result_27882_$t.txt
./cachesim $t 256 131072 2 256 4096 2 >> ./results/cachesim_result_27882_$t.txt &
echo -n "$t 256 131072 2 512 4096 2 - 1090744 - " > ./results/cachesim_result_27883_$t.txt
./cachesim $t 256 131072 2 512 4096 2 >> ./results/cachesim_result_27883_$t.txt &
echo -n "$t 256 131072 2 1024 4096 2 - 1090652 - " > ./results/cachesim_result_27884_$t.txt
./cachesim $t 256 131072 2 1024 4096 2 >> ./results/cachesim_result_27884_$t.txt &
echo -n "$t 256 131072 2 256 4096 4 - 1090944 - " > ./results/cachesim_result_27885_$t.txt
./cachesim $t 256 131072 2 256 4096 4 >> ./results/cachesim_result_27885_$t.txt &
echo -n "$t 256 131072 2 512 4096 4 - 1090752 - " > ./results/cachesim_result_27886_$t.txt
./cachesim $t 256 131072 2 512 4096 4 >> ./results/cachesim_result_27886_$t.txt &
echo -n "$t 256 131072 2 1024 4096 4 - 1090656 - " > ./results/cachesim_result_27887_$t.txt
./cachesim $t 256 131072 2 1024 4096 4 >> ./results/cachesim_result_27887_$t.txt &
echo -n "$t 256 131072 2 256 4096 8 - 1090960 - " > ./results/cachesim_result_27888_$t.txt
./cachesim $t 256 131072 2 256 4096 8 >> ./results/cachesim_result_27888_$t.txt &
echo -n "$t 256 131072 2 512 4096 8 - 1090760 - " > ./results/cachesim_result_27889_$t.txt
./cachesim $t 256 131072 2 512 4096 8 >> ./results/cachesim_result_27889_$t.txt &
echo -n "$t 256 131072 2 256 4096 16 - 1090976 - " > ./results/cachesim_result_27890_$t.txt
./cachesim $t 256 131072 2 256 4096 16 >> ./results/cachesim_result_27890_$t.txt &
echo -n "$t 256 131072 2 256 8192 1 - 1124000 - " > ./results/cachesim_result_27891_$t.txt
./cachesim $t 256 131072 2 256 8192 1 >> ./results/cachesim_result_27891_$t.txt &
echo -n "$t 256 131072 2 512 8192 1 - 1123664 - " > ./results/cachesim_result_27892_$t.txt
./cachesim $t 256 131072 2 512 8192 1 >> ./results/cachesim_result_27892_$t.txt &
echo -n "$t 256 131072 2 1024 8192 1 - 1123496 - " > ./results/cachesim_result_27893_$t.txt
./cachesim $t 256 131072 2 1024 8192 1 >> ./results/cachesim_result_27893_$t.txt &
echo -n "$t 256 131072 2 256 8192 2 - 1124032 - " > ./results/cachesim_result_27894_$t.txt
./cachesim $t 256 131072 2 256 8192 2 >> ./results/cachesim_result_27894_$t.txt &
echo -n "$t 256 131072 2 512 8192 2 - 1123680 - " > ./results/cachesim_result_27895_$t.txt
./cachesim $t 256 131072 2 512 8192 2 >> ./results/cachesim_result_27895_$t.txt &
echo -n "$t 256 131072 2 1024 8192 2 - 1123504 - " > ./results/cachesim_result_27896_$t.txt
./cachesim $t 256 131072 2 1024 8192 2 >> ./results/cachesim_result_27896_$t.txt &
echo -n "$t 256 131072 2 256 8192 4 - 1124064 - " > ./results/cachesim_result_27897_$t.txt
./cachesim $t 256 131072 2 256 8192 4 >> ./results/cachesim_result_27897_$t.txt &
echo -n "$t 256 131072 2 512 8192 4 - 1123696 - " > ./results/cachesim_result_27898_$t.txt
./cachesim $t 256 131072 2 512 8192 4 >> ./results/cachesim_result_27898_$t.txt &
echo -n "$t 256 131072 2 1024 8192 4 - 1123512 - " > ./results/cachesim_result_27899_$t.txt
./cachesim $t 256 131072 2 1024 8192 4 >> ./results/cachesim_result_27899_$t.txt &
echo -n "$t 256 131072 2 256 8192 8 - 1124096 - " > ./results/cachesim_result_27900_$t.txt
./cachesim $t 256 131072 2 256 8192 8 >> ./results/cachesim_result_27900_$t.txt &
echo -n "$t 256 131072 2 512 8192 8 - 1123712 - " > ./results/cachesim_result_27901_$t.txt
./cachesim $t 256 131072 2 512 8192 8 >> ./results/cachesim_result_27901_$t.txt &
echo -n "$t 256 131072 2 1024 8192 8 - 1123520 - " > ./results/cachesim_result_27902_$t.txt
./cachesim $t 256 131072 2 1024 8192 8 >> ./results/cachesim_result_27902_$t.txt &
echo -n "$t 256 131072 2 256 8192 16 - 1124128 - " > ./results/cachesim_result_27903_$t.txt
./cachesim $t 256 131072 2 256 8192 16 >> ./results/cachesim_result_27903_$t.txt &
echo -n "$t 256 131072 2 512 8192 16 - 1123728 - " > ./results/cachesim_result_27904_$t.txt
./cachesim $t 256 131072 2 512 8192 16 >> ./results/cachesim_result_27904_$t.txt &
echo -n "$t 256 131072 2 256 8192 32 - 1124160 - " > ./results/cachesim_result_27905_$t.txt
./cachesim $t 256 131072 2 256 8192 32 >> ./results/cachesim_result_27905_$t.txt &
echo -n "$t 256 131072 2 256 16384 1 - 1190144 - " > ./results/cachesim_result_27906_$t.txt
./cachesim $t 256 131072 2 256 16384 1 >> ./results/cachesim_result_27906_$t.txt &
echo -n "$t 256 131072 2 512 16384 1 - 1189504 - " > ./results/cachesim_result_27907_$t.txt
./cachesim $t 256 131072 2 512 16384 1 >> ./results/cachesim_result_27907_$t.txt &
echo -n "$t 256 131072 2 1024 16384 1 - 1189184 - " > ./results/cachesim_result_27908_$t.txt
./cachesim $t 256 131072 2 1024 16384 1 >> ./results/cachesim_result_27908_$t.txt &
echo -n "$t 256 131072 2 256 16384 2 - 1190208 - " > ./results/cachesim_result_27909_$t.txt
./cachesim $t 256 131072 2 256 16384 2 >> ./results/cachesim_result_27909_$t.txt &
echo -n "$t 256 131072 2 512 16384 2 - 1189536 - " > ./results/cachesim_result_27910_$t.txt
./cachesim $t 256 131072 2 512 16384 2 >> ./results/cachesim_result_27910_$t.txt &
echo -n "$t 256 131072 2 1024 16384 2 - 1189200 - " > ./results/cachesim_result_27911_$t.txt
./cachesim $t 256 131072 2 1024 16384 2 >> ./results/cachesim_result_27911_$t.txt &
echo -n "$t 256 131072 2 256 16384 4 - 1190272 - " > ./results/cachesim_result_27912_$t.txt
./cachesim $t 256 131072 2 256 16384 4 >> ./results/cachesim_result_27912_$t.txt &
echo -n "$t 256 131072 2 512 16384 4 - 1189568 - " > ./results/cachesim_result_27913_$t.txt
./cachesim $t 256 131072 2 512 16384 4 >> ./results/cachesim_result_27913_$t.txt &
echo -n "$t 256 131072 2 1024 16384 4 - 1189216 - " > ./results/cachesim_result_27914_$t.txt
./cachesim $t 256 131072 2 1024 16384 4 >> ./results/cachesim_result_27914_$t.txt &
echo -n "$t 256 131072 2 256 16384 8 - 1190336 - " > ./results/cachesim_result_27915_$t.txt
./cachesim $t 256 131072 2 256 16384 8 >> ./results/cachesim_result_27915_$t.txt &
echo -n "$t 256 131072 2 512 16384 8 - 1189600 - " > ./results/cachesim_result_27916_$t.txt
./cachesim $t 256 131072 2 512 16384 8 >> ./results/cachesim_result_27916_$t.txt &
echo -n "$t 256 131072 2 1024 16384 8 - 1189232 - " > ./results/cachesim_result_27917_$t.txt
./cachesim $t 256 131072 2 1024 16384 8 >> ./results/cachesim_result_27917_$t.txt &
echo -n "$t 256 131072 2 256 16384 16 - 1190400 - " > ./results/cachesim_result_27918_$t.txt
./cachesim $t 256 131072 2 256 16384 16 >> ./results/cachesim_result_27918_$t.txt &
echo -n "$t 256 131072 2 512 16384 16 - 1189632 - " > ./results/cachesim_result_27919_$t.txt
./cachesim $t 256 131072 2 512 16384 16 >> ./results/cachesim_result_27919_$t.txt &
echo -n "$t 256 131072 2 1024 16384 16 - 1189248 - " > ./results/cachesim_result_27920_$t.txt
./cachesim $t 256 131072 2 1024 16384 16 >> ./results/cachesim_result_27920_$t.txt &
echo -n "$t 256 131072 2 256 16384 32 - 1190464 - " > ./results/cachesim_result_27921_$t.txt
./cachesim $t 256 131072 2 256 16384 32 >> ./results/cachesim_result_27921_$t.txt &
echo -n "$t 256 131072 2 512 16384 32 - 1189664 - " > ./results/cachesim_result_27922_$t.txt
./cachesim $t 256 131072 2 512 16384 32 >> ./results/cachesim_result_27922_$t.txt &
echo -n "$t 256 131072 2 256 32768 1 - 1322368 - " > ./results/cachesim_result_27923_$t.txt
./cachesim $t 256 131072 2 256 32768 1 >> ./results/cachesim_result_27923_$t.txt &
echo -n "$t 256 131072 2 512 32768 1 - 1321152 - " > ./results/cachesim_result_27924_$t.txt
./cachesim $t 256 131072 2 512 32768 1 >> ./results/cachesim_result_27924_$t.txt &
echo -n "$t 256 131072 2 1024 32768 1 - 1320544 - " > ./results/cachesim_result_27925_$t.txt
./cachesim $t 256 131072 2 1024 32768 1 >> ./results/cachesim_result_27925_$t.txt &
echo -n "$t 256 131072 2 256 32768 2 - 1322496 - " > ./results/cachesim_result_27926_$t.txt
./cachesim $t 256 131072 2 256 32768 2 >> ./results/cachesim_result_27926_$t.txt &
echo -n "$t 256 131072 2 512 32768 2 - 1321216 - " > ./results/cachesim_result_27927_$t.txt
./cachesim $t 256 131072 2 512 32768 2 >> ./results/cachesim_result_27927_$t.txt &
echo -n "$t 256 131072 2 1024 32768 2 - 1320576 - " > ./results/cachesim_result_27928_$t.txt
./cachesim $t 256 131072 2 1024 32768 2 >> ./results/cachesim_result_27928_$t.txt &
echo -n "$t 256 131072 2 256 32768 4 - 1322624 - " > ./results/cachesim_result_27929_$t.txt
./cachesim $t 256 131072 2 256 32768 4 >> ./results/cachesim_result_27929_$t.txt &
echo -n "$t 256 131072 2 512 32768 4 - 1321280 - " > ./results/cachesim_result_27930_$t.txt
./cachesim $t 256 131072 2 512 32768 4 >> ./results/cachesim_result_27930_$t.txt &
echo -n "$t 256 131072 2 1024 32768 4 - 1320608 - " > ./results/cachesim_result_27931_$t.txt
./cachesim $t 256 131072 2 1024 32768 4 >> ./results/cachesim_result_27931_$t.txt &
echo -n "$t 256 131072 2 256 32768 8 - 1322752 - " > ./results/cachesim_result_27932_$t.txt
./cachesim $t 256 131072 2 256 32768 8 >> ./results/cachesim_result_27932_$t.txt &
echo -n "$t 256 131072 2 512 32768 8 - 1321344 - " > ./results/cachesim_result_27933_$t.txt
./cachesim $t 256 131072 2 512 32768 8 >> ./results/cachesim_result_27933_$t.txt &
echo -n "$t 256 131072 2 1024 32768 8 - 1320640 - " > ./results/cachesim_result_27934_$t.txt
./cachesim $t 256 131072 2 1024 32768 8 >> ./results/cachesim_result_27934_$t.txt &
echo -n "$t 256 131072 2 256 32768 16 - 1322880 - " > ./results/cachesim_result_27935_$t.txt
./cachesim $t 256 131072 2 256 32768 16 >> ./results/cachesim_result_27935_$t.txt &
echo -n "$t 256 131072 2 512 32768 16 - 1321408 - " > ./results/cachesim_result_27936_$t.txt
./cachesim $t 256 131072 2 512 32768 16 >> ./results/cachesim_result_27936_$t.txt &
echo -n "$t 256 131072 2 1024 32768 16 - 1320672 - " > ./results/cachesim_result_27937_$t.txt
./cachesim $t 256 131072 2 1024 32768 16 >> ./results/cachesim_result_27937_$t.txt &
echo -n "$t 256 131072 2 256 32768 32 - 1323008 - " > ./results/cachesim_result_27938_$t.txt
./cachesim $t 256 131072 2 256 32768 32 >> ./results/cachesim_result_27938_$t.txt &
echo -n "$t 256 131072 2 512 32768 32 - 1321472 - " > ./results/cachesim_result_27939_$t.txt
./cachesim $t 256 131072 2 512 32768 32 >> ./results/cachesim_result_27939_$t.txt &
echo -n "$t 256 131072 2 1024 32768 32 - 1320704 - " > ./results/cachesim_result_27940_$t.txt
./cachesim $t 256 131072 2 1024 32768 32 >> ./results/cachesim_result_27940_$t.txt &
echo -n "$t 512 131072 2 512 4096 1 - 1086128 - " > ./results/cachesim_result_27941_$t.txt
./cachesim $t 512 131072 2 512 4096 1 >> ./results/cachesim_result_27941_$t.txt &
echo -n "$t 512 131072 2 1024 4096 1 - 1086040 - " > ./results/cachesim_result_27942_$t.txt
./cachesim $t 512 131072 2 1024 4096 1 >> ./results/cachesim_result_27942_$t.txt &
echo -n "$t 512 131072 2 512 4096 2 - 1086136 - " > ./results/cachesim_result_27943_$t.txt
./cachesim $t 512 131072 2 512 4096 2 >> ./results/cachesim_result_27943_$t.txt &
echo -n "$t 512 131072 2 1024 4096 2 - 1086044 - " > ./results/cachesim_result_27944_$t.txt
./cachesim $t 512 131072 2 1024 4096 2 >> ./results/cachesim_result_27944_$t.txt &
echo -n "$t 512 131072 2 512 4096 4 - 1086144 - " > ./results/cachesim_result_27945_$t.txt
./cachesim $t 512 131072 2 512 4096 4 >> ./results/cachesim_result_27945_$t.txt &
echo -n "$t 512 131072 2 1024 4096 4 - 1086048 - " > ./results/cachesim_result_27946_$t.txt
./cachesim $t 512 131072 2 1024 4096 4 >> ./results/cachesim_result_27946_$t.txt &
echo -n "$t 512 131072 2 512 4096 8 - 1086152 - " > ./results/cachesim_result_27947_$t.txt
./cachesim $t 512 131072 2 512 4096 8 >> ./results/cachesim_result_27947_$t.txt &
echo -n "$t 512 131072 2 512 8192 1 - 1119056 - " > ./results/cachesim_result_27948_$t.txt
./cachesim $t 512 131072 2 512 8192 1 >> ./results/cachesim_result_27948_$t.txt &
echo -n "$t 512 131072 2 1024 8192 1 - 1118888 - " > ./results/cachesim_result_27949_$t.txt
./cachesim $t 512 131072 2 1024 8192 1 >> ./results/cachesim_result_27949_$t.txt &
echo -n "$t 512 131072 2 512 8192 2 - 1119072 - " > ./results/cachesim_result_27950_$t.txt
./cachesim $t 512 131072 2 512 8192 2 >> ./results/cachesim_result_27950_$t.txt &
echo -n "$t 512 131072 2 1024 8192 2 - 1118896 - " > ./results/cachesim_result_27951_$t.txt
./cachesim $t 512 131072 2 1024 8192 2 >> ./results/cachesim_result_27951_$t.txt &
echo -n "$t 512 131072 2 512 8192 4 - 1119088 - " > ./results/cachesim_result_27952_$t.txt
./cachesim $t 512 131072 2 512 8192 4 >> ./results/cachesim_result_27952_$t.txt &
echo -n "$t 512 131072 2 1024 8192 4 - 1118904 - " > ./results/cachesim_result_27953_$t.txt
./cachesim $t 512 131072 2 1024 8192 4 >> ./results/cachesim_result_27953_$t.txt &
echo -n "$t 512 131072 2 512 8192 8 - 1119104 - " > ./results/cachesim_result_27954_$t.txt
./cachesim $t 512 131072 2 512 8192 8 >> ./results/cachesim_result_27954_$t.txt &
echo -n "$t 512 131072 2 1024 8192 8 - 1118912 - " > ./results/cachesim_result_27955_$t.txt
./cachesim $t 512 131072 2 1024 8192 8 >> ./results/cachesim_result_27955_$t.txt &
echo -n "$t 512 131072 2 512 8192 16 - 1119120 - " > ./results/cachesim_result_27956_$t.txt
./cachesim $t 512 131072 2 512 8192 16 >> ./results/cachesim_result_27956_$t.txt &
echo -n "$t 512 131072 2 512 16384 1 - 1184896 - " > ./results/cachesim_result_27957_$t.txt
./cachesim $t 512 131072 2 512 16384 1 >> ./results/cachesim_result_27957_$t.txt &
echo -n "$t 512 131072 2 1024 16384 1 - 1184576 - " > ./results/cachesim_result_27958_$t.txt
./cachesim $t 512 131072 2 1024 16384 1 >> ./results/cachesim_result_27958_$t.txt &
echo -n "$t 512 131072 2 512 16384 2 - 1184928 - " > ./results/cachesim_result_27959_$t.txt
./cachesim $t 512 131072 2 512 16384 2 >> ./results/cachesim_result_27959_$t.txt &
echo -n "$t 512 131072 2 1024 16384 2 - 1184592 - " > ./results/cachesim_result_27960_$t.txt
./cachesim $t 512 131072 2 1024 16384 2 >> ./results/cachesim_result_27960_$t.txt &
echo -n "$t 512 131072 2 512 16384 4 - 1184960 - " > ./results/cachesim_result_27961_$t.txt
./cachesim $t 512 131072 2 512 16384 4 >> ./results/cachesim_result_27961_$t.txt &
echo -n "$t 512 131072 2 1024 16384 4 - 1184608 - " > ./results/cachesim_result_27962_$t.txt
./cachesim $t 512 131072 2 1024 16384 4 >> ./results/cachesim_result_27962_$t.txt &
echo -n "$t 512 131072 2 512 16384 8 - 1184992 - " > ./results/cachesim_result_27963_$t.txt
./cachesim $t 512 131072 2 512 16384 8 >> ./results/cachesim_result_27963_$t.txt &
echo -n "$t 512 131072 2 1024 16384 8 - 1184624 - " > ./results/cachesim_result_27964_$t.txt
./cachesim $t 512 131072 2 1024 16384 8 >> ./results/cachesim_result_27964_$t.txt &
echo -n "$t 512 131072 2 512 16384 16 - 1185024 - " > ./results/cachesim_result_27965_$t.txt
./cachesim $t 512 131072 2 512 16384 16 >> ./results/cachesim_result_27965_$t.txt &
echo -n "$t 512 131072 2 1024 16384 16 - 1184640 - " > ./results/cachesim_result_27966_$t.txt
./cachesim $t 512 131072 2 1024 16384 16 >> ./results/cachesim_result_27966_$t.txt &
echo -n "$t 512 131072 2 512 16384 32 - 1185056 - " > ./results/cachesim_result_27967_$t.txt
./cachesim $t 512 131072 2 512 16384 32 >> ./results/cachesim_result_27967_$t.txt &
echo -n "$t 512 131072 2 512 32768 1 - 1316544 - " > ./results/cachesim_result_27968_$t.txt
./cachesim $t 512 131072 2 512 32768 1 >> ./results/cachesim_result_27968_$t.txt &
echo -n "$t 512 131072 2 1024 32768 1 - 1315936 - " > ./results/cachesim_result_27969_$t.txt
./cachesim $t 512 131072 2 1024 32768 1 >> ./results/cachesim_result_27969_$t.txt &
echo -n "$t 512 131072 2 512 32768 2 - 1316608 - " > ./results/cachesim_result_27970_$t.txt
./cachesim $t 512 131072 2 512 32768 2 >> ./results/cachesim_result_27970_$t.txt &
echo -n "$t 512 131072 2 1024 32768 2 - 1315968 - " > ./results/cachesim_result_27971_$t.txt
./cachesim $t 512 131072 2 1024 32768 2 >> ./results/cachesim_result_27971_$t.txt &
echo -n "$t 512 131072 2 512 32768 4 - 1316672 - " > ./results/cachesim_result_27972_$t.txt
./cachesim $t 512 131072 2 512 32768 4 >> ./results/cachesim_result_27972_$t.txt &
echo -n "$t 512 131072 2 1024 32768 4 - 1316000 - " > ./results/cachesim_result_27973_$t.txt
./cachesim $t 512 131072 2 1024 32768 4 >> ./results/cachesim_result_27973_$t.txt &
echo -n "$t 512 131072 2 512 32768 8 - 1316736 - " > ./results/cachesim_result_27974_$t.txt
./cachesim $t 512 131072 2 512 32768 8 >> ./results/cachesim_result_27974_$t.txt &
echo -n "$t 512 131072 2 1024 32768 8 - 1316032 - " > ./results/cachesim_result_27975_$t.txt
./cachesim $t 512 131072 2 1024 32768 8 >> ./results/cachesim_result_27975_$t.txt &
echo -n "$t 512 131072 2 512 32768 16 - 1316800 - " > ./results/cachesim_result_27976_$t.txt
./cachesim $t 512 131072 2 512 32768 16 >> ./results/cachesim_result_27976_$t.txt &
echo -n "$t 512 131072 2 1024 32768 16 - 1316064 - " > ./results/cachesim_result_27977_$t.txt
./cachesim $t 512 131072 2 1024 32768 16 >> ./results/cachesim_result_27977_$t.txt &
echo -n "$t 512 131072 2 512 32768 32 - 1316864 - " > ./results/cachesim_result_27978_$t.txt
./cachesim $t 512 131072 2 512 32768 32 >> ./results/cachesim_result_27978_$t.txt &
echo -n "$t 512 131072 2 1024 32768 32 - 1316096 - " > ./results/cachesim_result_27979_$t.txt
./cachesim $t 512 131072 2 1024 32768 32 >> ./results/cachesim_result_27979_$t.txt &
echo -n "$t 1024 131072 2 1024 4096 1 - 1083736 - " > ./results/cachesim_result_27980_$t.txt
./cachesim $t 1024 131072 2 1024 4096 1 >> ./results/cachesim_result_27980_$t.txt &
echo -n "$t 1024 131072 2 1024 4096 2 - 1083740 - " > ./results/cachesim_result_27981_$t.txt
./cachesim $t 1024 131072 2 1024 4096 2 >> ./results/cachesim_result_27981_$t.txt &
echo -n "$t 1024 131072 2 1024 4096 4 - 1083744 - " > ./results/cachesim_result_27982_$t.txt
./cachesim $t 1024 131072 2 1024 4096 4 >> ./results/cachesim_result_27982_$t.txt &
echo -n "$t 1024 131072 2 1024 8192 1 - 1116584 - " > ./results/cachesim_result_27983_$t.txt
./cachesim $t 1024 131072 2 1024 8192 1 >> ./results/cachesim_result_27983_$t.txt &
echo -n "$t 1024 131072 2 1024 8192 2 - 1116592 - " > ./results/cachesim_result_27984_$t.txt
./cachesim $t 1024 131072 2 1024 8192 2 >> ./results/cachesim_result_27984_$t.txt &
echo -n "$t 1024 131072 2 1024 8192 4 - 1116600 - " > ./results/cachesim_result_27985_$t.txt
./cachesim $t 1024 131072 2 1024 8192 4 >> ./results/cachesim_result_27985_$t.txt &
echo -n "$t 1024 131072 2 1024 8192 8 - 1116608 - " > ./results/cachesim_result_27986_$t.txt
./cachesim $t 1024 131072 2 1024 8192 8 >> ./results/cachesim_result_27986_$t.txt &
echo -n "$t 1024 131072 2 1024 16384 1 - 1182272 - " > ./results/cachesim_result_27987_$t.txt
./cachesim $t 1024 131072 2 1024 16384 1 >> ./results/cachesim_result_27987_$t.txt &
echo -n "$t 1024 131072 2 1024 16384 2 - 1182288 - " > ./results/cachesim_result_27988_$t.txt
./cachesim $t 1024 131072 2 1024 16384 2 >> ./results/cachesim_result_27988_$t.txt &
echo -n "$t 1024 131072 2 1024 16384 4 - 1182304 - " > ./results/cachesim_result_27989_$t.txt
./cachesim $t 1024 131072 2 1024 16384 4 >> ./results/cachesim_result_27989_$t.txt &
echo -n "$t 1024 131072 2 1024 16384 8 - 1182320 - " > ./results/cachesim_result_27990_$t.txt
./cachesim $t 1024 131072 2 1024 16384 8 >> ./results/cachesim_result_27990_$t.txt &
echo -n "$t 1024 131072 2 1024 16384 16 - 1182336 - " > ./results/cachesim_result_27991_$t.txt
./cachesim $t 1024 131072 2 1024 16384 16 >> ./results/cachesim_result_27991_$t.txt &
echo -n "$t 1024 131072 2 1024 32768 1 - 1313632 - " > ./results/cachesim_result_27992_$t.txt
./cachesim $t 1024 131072 2 1024 32768 1 >> ./results/cachesim_result_27992_$t.txt &
echo -n "$t 1024 131072 2 1024 32768 2 - 1313664 - " > ./results/cachesim_result_27993_$t.txt
./cachesim $t 1024 131072 2 1024 32768 2 >> ./results/cachesim_result_27993_$t.txt &
echo -n "$t 1024 131072 2 1024 32768 4 - 1313696 - " > ./results/cachesim_result_27994_$t.txt
./cachesim $t 1024 131072 2 1024 32768 4 >> ./results/cachesim_result_27994_$t.txt &
echo -n "$t 1024 131072 2 1024 32768 8 - 1313728 - " > ./results/cachesim_result_27995_$t.txt
./cachesim $t 1024 131072 2 1024 32768 8 >> ./results/cachesim_result_27995_$t.txt &
echo -n "$t 1024 131072 2 1024 32768 16 - 1313760 - " > ./results/cachesim_result_27996_$t.txt
./cachesim $t 1024 131072 2 1024 32768 16 >> ./results/cachesim_result_27996_$t.txt &
echo -n "$t 1024 131072 2 1024 32768 32 - 1313792 - " > ./results/cachesim_result_27997_$t.txt
./cachesim $t 1024 131072 2 1024 32768 32 >> ./results/cachesim_result_27997_$t.txt &
echo -n "$t 16 131072 4 16 4096 1 - 1242624 - " > ./results/cachesim_result_27998_$t.txt
./cachesim $t 16 131072 4 16 4096 1 >> ./results/cachesim_result_27998_$t.txt &
echo -n "$t 16 131072 4 32 4096 1 - 1239808 - " > ./results/cachesim_result_27999_$t.txt
./cachesim $t 16 131072 4 32 4096 1 >> ./results/cachesim_result_27999_$t.txt &
echo -n "$t 16 131072 4 64 4096 1 - 1238400 - " > ./results/cachesim_result_28000_$t.txt
./cachesim $t 16 131072 4 64 4096 1 >> ./results/cachesim_result_28000_$t.txt &
echo -n "$t 16 131072 4 128 4096 1 - 1237696 - " > ./results/cachesim_result_28001_$t.txt
./cachesim $t 16 131072 4 128 4096 1 >> ./results/cachesim_result_28001_$t.txt &
echo -n "$t 16 131072 4 256 4096 1 - 1237344 - " > ./results/cachesim_result_28002_$t.txt
./cachesim $t 16 131072 4 256 4096 1 >> ./results/cachesim_result_28002_$t.txt &
echo -n "$t 16 131072 4 512 4096 1 - 1237168 - " > ./results/cachesim_result_28003_$t.txt
./cachesim $t 16 131072 4 512 4096 1 >> ./results/cachesim_result_28003_$t.txt &
echo -n "$t 16 131072 4 1024 4096 1 - 1237080 - " > ./results/cachesim_result_28004_$t.txt
./cachesim $t 16 131072 4 1024 4096 1 >> ./results/cachesim_result_28004_$t.txt &
echo -n "$t 16 131072 4 16 4096 2 - 1242880 - " > ./results/cachesim_result_28005_$t.txt
./cachesim $t 16 131072 4 16 4096 2 >> ./results/cachesim_result_28005_$t.txt &
echo -n "$t 16 131072 4 32 4096 2 - 1239936 - " > ./results/cachesim_result_28006_$t.txt
./cachesim $t 16 131072 4 32 4096 2 >> ./results/cachesim_result_28006_$t.txt &
echo -n "$t 16 131072 4 64 4096 2 - 1238464 - " > ./results/cachesim_result_28007_$t.txt
./cachesim $t 16 131072 4 64 4096 2 >> ./results/cachesim_result_28007_$t.txt &
echo -n "$t 16 131072 4 128 4096 2 - 1237728 - " > ./results/cachesim_result_28008_$t.txt
./cachesim $t 16 131072 4 128 4096 2 >> ./results/cachesim_result_28008_$t.txt &
echo -n "$t 16 131072 4 256 4096 2 - 1237360 - " > ./results/cachesim_result_28009_$t.txt
./cachesim $t 16 131072 4 256 4096 2 >> ./results/cachesim_result_28009_$t.txt &
echo -n "$t 16 131072 4 512 4096 2 - 1237176 - " > ./results/cachesim_result_28010_$t.txt
./cachesim $t 16 131072 4 512 4096 2 >> ./results/cachesim_result_28010_$t.txt &
echo -n "$t 16 131072 4 1024 4096 2 - 1237084 - " > ./results/cachesim_result_28011_$t.txt
./cachesim $t 16 131072 4 1024 4096 2 >> ./results/cachesim_result_28011_$t.txt &
echo -n "$t 16 131072 4 16 4096 4 - 1243136 - " > ./results/cachesim_result_28012_$t.txt
./cachesim $t 16 131072 4 16 4096 4 >> ./results/cachesim_result_28012_$t.txt &
echo -n "$t 16 131072 4 32 4096 4 - 1240064 - " > ./results/cachesim_result_28013_$t.txt
./cachesim $t 16 131072 4 32 4096 4 >> ./results/cachesim_result_28013_$t.txt &
echo -n "$t 16 131072 4 64 4096 4 - 1238528 - " > ./results/cachesim_result_28014_$t.txt
./cachesim $t 16 131072 4 64 4096 4 >> ./results/cachesim_result_28014_$t.txt &
echo -n "$t 16 131072 4 128 4096 4 - 1237760 - " > ./results/cachesim_result_28015_$t.txt
./cachesim $t 16 131072 4 128 4096 4 >> ./results/cachesim_result_28015_$t.txt &
echo -n "$t 16 131072 4 256 4096 4 - 1237376 - " > ./results/cachesim_result_28016_$t.txt
./cachesim $t 16 131072 4 256 4096 4 >> ./results/cachesim_result_28016_$t.txt &
echo -n "$t 16 131072 4 512 4096 4 - 1237184 - " > ./results/cachesim_result_28017_$t.txt
./cachesim $t 16 131072 4 512 4096 4 >> ./results/cachesim_result_28017_$t.txt &
echo -n "$t 16 131072 4 1024 4096 4 - 1237088 - " > ./results/cachesim_result_28018_$t.txt
./cachesim $t 16 131072 4 1024 4096 4 >> ./results/cachesim_result_28018_$t.txt &
echo -n "$t 16 131072 4 16 4096 8 - 1243392 - " > ./results/cachesim_result_28019_$t.txt
./cachesim $t 16 131072 4 16 4096 8 >> ./results/cachesim_result_28019_$t.txt &
echo -n "$t 16 131072 4 32 4096 8 - 1240192 - " > ./results/cachesim_result_28020_$t.txt
./cachesim $t 16 131072 4 32 4096 8 >> ./results/cachesim_result_28020_$t.txt &
echo -n "$t 16 131072 4 64 4096 8 - 1238592 - " > ./results/cachesim_result_28021_$t.txt
./cachesim $t 16 131072 4 64 4096 8 >> ./results/cachesim_result_28021_$t.txt &
echo -n "$t 16 131072 4 128 4096 8 - 1237792 - " > ./results/cachesim_result_28022_$t.txt
./cachesim $t 16 131072 4 128 4096 8 >> ./results/cachesim_result_28022_$t.txt &
echo -n "$t 16 131072 4 256 4096 8 - 1237392 - " > ./results/cachesim_result_28023_$t.txt
./cachesim $t 16 131072 4 256 4096 8 >> ./results/cachesim_result_28023_$t.txt &
echo -n "$t 16 131072 4 512 4096 8 - 1237192 - " > ./results/cachesim_result_28024_$t.txt
./cachesim $t 16 131072 4 512 4096 8 >> ./results/cachesim_result_28024_$t.txt &
echo -n "$t 16 131072 4 16 4096 16 - 1243648 - " > ./results/cachesim_result_28025_$t.txt
./cachesim $t 16 131072 4 16 4096 16 >> ./results/cachesim_result_28025_$t.txt &
echo -n "$t 16 131072 4 32 4096 16 - 1240320 - " > ./results/cachesim_result_28026_$t.txt
./cachesim $t 16 131072 4 32 4096 16 >> ./results/cachesim_result_28026_$t.txt &
echo -n "$t 16 131072 4 64 4096 16 - 1238656 - " > ./results/cachesim_result_28027_$t.txt
./cachesim $t 16 131072 4 64 4096 16 >> ./results/cachesim_result_28027_$t.txt &
echo -n "$t 16 131072 4 128 4096 16 - 1237824 - " > ./results/cachesim_result_28028_$t.txt
./cachesim $t 16 131072 4 128 4096 16 >> ./results/cachesim_result_28028_$t.txt &
echo -n "$t 16 131072 4 256 4096 16 - 1237408 - " > ./results/cachesim_result_28029_$t.txt
./cachesim $t 16 131072 4 256 4096 16 >> ./results/cachesim_result_28029_$t.txt &
echo -n "$t 16 131072 4 16 4096 32 - 1243904 - " > ./results/cachesim_result_28030_$t.txt
./cachesim $t 16 131072 4 16 4096 32 >> ./results/cachesim_result_28030_$t.txt &
echo -n "$t 16 131072 4 32 4096 32 - 1240448 - " > ./results/cachesim_result_28031_$t.txt
./cachesim $t 16 131072 4 32 4096 32 >> ./results/cachesim_result_28031_$t.txt &
echo -n "$t 16 131072 4 64 4096 32 - 1238720 - " > ./results/cachesim_result_28032_$t.txt
./cachesim $t 16 131072 4 64 4096 32 >> ./results/cachesim_result_28032_$t.txt &
echo -n "$t 16 131072 4 128 4096 32 - 1237856 - " > ./results/cachesim_result_28033_$t.txt
./cachesim $t 16 131072 4 128 4096 32 >> ./results/cachesim_result_28033_$t.txt &
echo -n "$t 16 131072 4 16 8192 1 - 1280512 - " > ./results/cachesim_result_28034_$t.txt
./cachesim $t 16 131072 4 16 8192 1 >> ./results/cachesim_result_28034_$t.txt &
echo -n "$t 16 131072 4 32 8192 1 - 1275136 - " > ./results/cachesim_result_28035_$t.txt
./cachesim $t 16 131072 4 32 8192 1 >> ./results/cachesim_result_28035_$t.txt &
echo -n "$t 16 131072 4 64 8192 1 - 1272448 - " > ./results/cachesim_result_28036_$t.txt
./cachesim $t 16 131072 4 64 8192 1 >> ./results/cachesim_result_28036_$t.txt &
echo -n "$t 16 131072 4 128 8192 1 - 1271104 - " > ./results/cachesim_result_28037_$t.txt
./cachesim $t 16 131072 4 128 8192 1 >> ./results/cachesim_result_28037_$t.txt &
echo -n "$t 16 131072 4 256 8192 1 - 1270432 - " > ./results/cachesim_result_28038_$t.txt
./cachesim $t 16 131072 4 256 8192 1 >> ./results/cachesim_result_28038_$t.txt &
echo -n "$t 16 131072 4 512 8192 1 - 1270096 - " > ./results/cachesim_result_28039_$t.txt
./cachesim $t 16 131072 4 512 8192 1 >> ./results/cachesim_result_28039_$t.txt &
echo -n "$t 16 131072 4 1024 8192 1 - 1269928 - " > ./results/cachesim_result_28040_$t.txt
./cachesim $t 16 131072 4 1024 8192 1 >> ./results/cachesim_result_28040_$t.txt &
echo -n "$t 16 131072 4 16 8192 2 - 1281024 - " > ./results/cachesim_result_28041_$t.txt
./cachesim $t 16 131072 4 16 8192 2 >> ./results/cachesim_result_28041_$t.txt &
echo -n "$t 16 131072 4 32 8192 2 - 1275392 - " > ./results/cachesim_result_28042_$t.txt
./cachesim $t 16 131072 4 32 8192 2 >> ./results/cachesim_result_28042_$t.txt &
echo -n "$t 16 131072 4 64 8192 2 - 1272576 - " > ./results/cachesim_result_28043_$t.txt
./cachesim $t 16 131072 4 64 8192 2 >> ./results/cachesim_result_28043_$t.txt &
echo -n "$t 16 131072 4 128 8192 2 - 1271168 - " > ./results/cachesim_result_28044_$t.txt
./cachesim $t 16 131072 4 128 8192 2 >> ./results/cachesim_result_28044_$t.txt &
echo -n "$t 16 131072 4 256 8192 2 - 1270464 - " > ./results/cachesim_result_28045_$t.txt
./cachesim $t 16 131072 4 256 8192 2 >> ./results/cachesim_result_28045_$t.txt &
echo -n "$t 16 131072 4 512 8192 2 - 1270112 - " > ./results/cachesim_result_28046_$t.txt
./cachesim $t 16 131072 4 512 8192 2 >> ./results/cachesim_result_28046_$t.txt &
echo -n "$t 16 131072 4 1024 8192 2 - 1269936 - " > ./results/cachesim_result_28047_$t.txt
./cachesim $t 16 131072 4 1024 8192 2 >> ./results/cachesim_result_28047_$t.txt &
echo -n "$t 16 131072 4 16 8192 4 - 1281536 - " > ./results/cachesim_result_28048_$t.txt
./cachesim $t 16 131072 4 16 8192 4 >> ./results/cachesim_result_28048_$t.txt &
echo -n "$t 16 131072 4 32 8192 4 - 1275648 - " > ./results/cachesim_result_28049_$t.txt
./cachesim $t 16 131072 4 32 8192 4 >> ./results/cachesim_result_28049_$t.txt &
echo -n "$t 16 131072 4 64 8192 4 - 1272704 - " > ./results/cachesim_result_28050_$t.txt
./cachesim $t 16 131072 4 64 8192 4 >> ./results/cachesim_result_28050_$t.txt &
echo -n "$t 16 131072 4 128 8192 4 - 1271232 - " > ./results/cachesim_result_28051_$t.txt
./cachesim $t 16 131072 4 128 8192 4 >> ./results/cachesim_result_28051_$t.txt &
echo -n "$t 16 131072 4 256 8192 4 - 1270496 - " > ./results/cachesim_result_28052_$t.txt
./cachesim $t 16 131072 4 256 8192 4 >> ./results/cachesim_result_28052_$t.txt &
echo -n "$t 16 131072 4 512 8192 4 - 1270128 - " > ./results/cachesim_result_28053_$t.txt
./cachesim $t 16 131072 4 512 8192 4 >> ./results/cachesim_result_28053_$t.txt &
echo -n "$t 16 131072 4 1024 8192 4 - 1269944 - " > ./results/cachesim_result_28054_$t.txt
./cachesim $t 16 131072 4 1024 8192 4 >> ./results/cachesim_result_28054_$t.txt &
echo -n "$t 16 131072 4 16 8192 8 - 1282048 - " > ./results/cachesim_result_28055_$t.txt
./cachesim $t 16 131072 4 16 8192 8 >> ./results/cachesim_result_28055_$t.txt &
echo -n "$t 16 131072 4 32 8192 8 - 1275904 - " > ./results/cachesim_result_28056_$t.txt
./cachesim $t 16 131072 4 32 8192 8 >> ./results/cachesim_result_28056_$t.txt &
echo -n "$t 16 131072 4 64 8192 8 - 1272832 - " > ./results/cachesim_result_28057_$t.txt
./cachesim $t 16 131072 4 64 8192 8 >> ./results/cachesim_result_28057_$t.txt &
echo -n "$t 16 131072 4 128 8192 8 - 1271296 - " > ./results/cachesim_result_28058_$t.txt
./cachesim $t 16 131072 4 128 8192 8 >> ./results/cachesim_result_28058_$t.txt &
echo -n "$t 16 131072 4 256 8192 8 - 1270528 - " > ./results/cachesim_result_28059_$t.txt
./cachesim $t 16 131072 4 256 8192 8 >> ./results/cachesim_result_28059_$t.txt &
echo -n "$t 16 131072 4 512 8192 8 - 1270144 - " > ./results/cachesim_result_28060_$t.txt
./cachesim $t 16 131072 4 512 8192 8 >> ./results/cachesim_result_28060_$t.txt &
echo -n "$t 16 131072 4 1024 8192 8 - 1269952 - " > ./results/cachesim_result_28061_$t.txt
./cachesim $t 16 131072 4 1024 8192 8 >> ./results/cachesim_result_28061_$t.txt &
echo -n "$t 16 131072 4 16 8192 16 - 1282560 - " > ./results/cachesim_result_28062_$t.txt
./cachesim $t 16 131072 4 16 8192 16 >> ./results/cachesim_result_28062_$t.txt &
echo -n "$t 16 131072 4 32 8192 16 - 1276160 - " > ./results/cachesim_result_28063_$t.txt
./cachesim $t 16 131072 4 32 8192 16 >> ./results/cachesim_result_28063_$t.txt &
echo -n "$t 16 131072 4 64 8192 16 - 1272960 - " > ./results/cachesim_result_28064_$t.txt
./cachesim $t 16 131072 4 64 8192 16 >> ./results/cachesim_result_28064_$t.txt &
echo -n "$t 16 131072 4 128 8192 16 - 1271360 - " > ./results/cachesim_result_28065_$t.txt
./cachesim $t 16 131072 4 128 8192 16 >> ./results/cachesim_result_28065_$t.txt &
echo -n "$t 16 131072 4 256 8192 16 - 1270560 - " > ./results/cachesim_result_28066_$t.txt
./cachesim $t 16 131072 4 256 8192 16 >> ./results/cachesim_result_28066_$t.txt &
echo -n "$t 16 131072 4 512 8192 16 - 1270160 - " > ./results/cachesim_result_28067_$t.txt
./cachesim $t 16 131072 4 512 8192 16 >> ./results/cachesim_result_28067_$t.txt &
echo -n "$t 16 131072 4 16 8192 32 - 1283072 - " > ./results/cachesim_result_28068_$t.txt
./cachesim $t 16 131072 4 16 8192 32 >> ./results/cachesim_result_28068_$t.txt &
echo -n "$t 16 131072 4 32 8192 32 - 1276416 - " > ./results/cachesim_result_28069_$t.txt
./cachesim $t 16 131072 4 32 8192 32 >> ./results/cachesim_result_28069_$t.txt &
echo -n "$t 16 131072 4 64 8192 32 - 1273088 - " > ./results/cachesim_result_28070_$t.txt
./cachesim $t 16 131072 4 64 8192 32 >> ./results/cachesim_result_28070_$t.txt &
echo -n "$t 16 131072 4 128 8192 32 - 1271424 - " > ./results/cachesim_result_28071_$t.txt
./cachesim $t 16 131072 4 128 8192 32 >> ./results/cachesim_result_28071_$t.txt &
echo -n "$t 16 131072 4 256 8192 32 - 1270592 - " > ./results/cachesim_result_28072_$t.txt
./cachesim $t 16 131072 4 256 8192 32 >> ./results/cachesim_result_28072_$t.txt &
echo -n "$t 16 131072 4 16 16384 1 - 1355776 - " > ./results/cachesim_result_28073_$t.txt
./cachesim $t 16 131072 4 16 16384 1 >> ./results/cachesim_result_28073_$t.txt &
echo -n "$t 16 131072 4 32 16384 1 - 1345536 - " > ./results/cachesim_result_28074_$t.txt
./cachesim $t 16 131072 4 32 16384 1 >> ./results/cachesim_result_28074_$t.txt &
echo -n "$t 16 131072 4 64 16384 1 - 1340416 - " > ./results/cachesim_result_28075_$t.txt
./cachesim $t 16 131072 4 64 16384 1 >> ./results/cachesim_result_28075_$t.txt &
echo -n "$t 16 131072 4 128 16384 1 - 1337856 - " > ./results/cachesim_result_28076_$t.txt
./cachesim $t 16 131072 4 128 16384 1 >> ./results/cachesim_result_28076_$t.txt &
echo -n "$t 16 131072 4 256 16384 1 - 1336576 - " > ./results/cachesim_result_28077_$t.txt
./cachesim $t 16 131072 4 256 16384 1 >> ./results/cachesim_result_28077_$t.txt &
echo -n "$t 16 131072 4 512 16384 1 - 1335936 - " > ./results/cachesim_result_28078_$t.txt
./cachesim $t 16 131072 4 512 16384 1 >> ./results/cachesim_result_28078_$t.txt &
echo -n "$t 16 131072 4 1024 16384 1 - 1335616 - " > ./results/cachesim_result_28079_$t.txt
./cachesim $t 16 131072 4 1024 16384 1 >> ./results/cachesim_result_28079_$t.txt &
echo -n "$t 16 131072 4 16 16384 2 - 1356800 - " > ./results/cachesim_result_28080_$t.txt
./cachesim $t 16 131072 4 16 16384 2 >> ./results/cachesim_result_28080_$t.txt &
echo -n "$t 16 131072 4 32 16384 2 - 1346048 - " > ./results/cachesim_result_28081_$t.txt
./cachesim $t 16 131072 4 32 16384 2 >> ./results/cachesim_result_28081_$t.txt &
echo -n "$t 16 131072 4 64 16384 2 - 1340672 - " > ./results/cachesim_result_28082_$t.txt
./cachesim $t 16 131072 4 64 16384 2 >> ./results/cachesim_result_28082_$t.txt &
echo -n "$t 16 131072 4 128 16384 2 - 1337984 - " > ./results/cachesim_result_28083_$t.txt
./cachesim $t 16 131072 4 128 16384 2 >> ./results/cachesim_result_28083_$t.txt &
echo -n "$t 16 131072 4 256 16384 2 - 1336640 - " > ./results/cachesim_result_28084_$t.txt
./cachesim $t 16 131072 4 256 16384 2 >> ./results/cachesim_result_28084_$t.txt &
echo -n "$t 16 131072 4 512 16384 2 - 1335968 - " > ./results/cachesim_result_28085_$t.txt
./cachesim $t 16 131072 4 512 16384 2 >> ./results/cachesim_result_28085_$t.txt &
echo -n "$t 16 131072 4 1024 16384 2 - 1335632 - " > ./results/cachesim_result_28086_$t.txt
./cachesim $t 16 131072 4 1024 16384 2 >> ./results/cachesim_result_28086_$t.txt &
echo -n "$t 16 131072 4 16 16384 4 - 1357824 - " > ./results/cachesim_result_28087_$t.txt
./cachesim $t 16 131072 4 16 16384 4 >> ./results/cachesim_result_28087_$t.txt &
echo -n "$t 16 131072 4 32 16384 4 - 1346560 - " > ./results/cachesim_result_28088_$t.txt
./cachesim $t 16 131072 4 32 16384 4 >> ./results/cachesim_result_28088_$t.txt &
echo -n "$t 16 131072 4 64 16384 4 - 1340928 - " > ./results/cachesim_result_28089_$t.txt
./cachesim $t 16 131072 4 64 16384 4 >> ./results/cachesim_result_28089_$t.txt &
echo -n "$t 16 131072 4 128 16384 4 - 1338112 - " > ./results/cachesim_result_28090_$t.txt
./cachesim $t 16 131072 4 128 16384 4 >> ./results/cachesim_result_28090_$t.txt &
echo -n "$t 16 131072 4 256 16384 4 - 1336704 - " > ./results/cachesim_result_28091_$t.txt
./cachesim $t 16 131072 4 256 16384 4 >> ./results/cachesim_result_28091_$t.txt &
echo -n "$t 16 131072 4 512 16384 4 - 1336000 - " > ./results/cachesim_result_28092_$t.txt
./cachesim $t 16 131072 4 512 16384 4 >> ./results/cachesim_result_28092_$t.txt &
echo -n "$t 16 131072 4 1024 16384 4 - 1335648 - " > ./results/cachesim_result_28093_$t.txt
./cachesim $t 16 131072 4 1024 16384 4 >> ./results/cachesim_result_28093_$t.txt &
echo -n "$t 16 131072 4 16 16384 8 - 1358848 - " > ./results/cachesim_result_28094_$t.txt
./cachesim $t 16 131072 4 16 16384 8 >> ./results/cachesim_result_28094_$t.txt &
echo -n "$t 16 131072 4 32 16384 8 - 1347072 - " > ./results/cachesim_result_28095_$t.txt
./cachesim $t 16 131072 4 32 16384 8 >> ./results/cachesim_result_28095_$t.txt &
echo -n "$t 16 131072 4 64 16384 8 - 1341184 - " > ./results/cachesim_result_28096_$t.txt
./cachesim $t 16 131072 4 64 16384 8 >> ./results/cachesim_result_28096_$t.txt &
echo -n "$t 16 131072 4 128 16384 8 - 1338240 - " > ./results/cachesim_result_28097_$t.txt
./cachesim $t 16 131072 4 128 16384 8 >> ./results/cachesim_result_28097_$t.txt &
echo -n "$t 16 131072 4 256 16384 8 - 1336768 - " > ./results/cachesim_result_28098_$t.txt
./cachesim $t 16 131072 4 256 16384 8 >> ./results/cachesim_result_28098_$t.txt &
echo -n "$t 16 131072 4 512 16384 8 - 1336032 - " > ./results/cachesim_result_28099_$t.txt
./cachesim $t 16 131072 4 512 16384 8 >> ./results/cachesim_result_28099_$t.txt &
echo -n "$t 16 131072 4 1024 16384 8 - 1335664 - " > ./results/cachesim_result_28100_$t.txt
./cachesim $t 16 131072 4 1024 16384 8 >> ./results/cachesim_result_28100_$t.txt &
echo -n "$t 16 131072 4 16 16384 16 - 1359872 - " > ./results/cachesim_result_28101_$t.txt
./cachesim $t 16 131072 4 16 16384 16 >> ./results/cachesim_result_28101_$t.txt &
echo -n "$t 16 131072 4 32 16384 16 - 1347584 - " > ./results/cachesim_result_28102_$t.txt
./cachesim $t 16 131072 4 32 16384 16 >> ./results/cachesim_result_28102_$t.txt &
echo -n "$t 16 131072 4 64 16384 16 - 1341440 - " > ./results/cachesim_result_28103_$t.txt
./cachesim $t 16 131072 4 64 16384 16 >> ./results/cachesim_result_28103_$t.txt &
echo -n "$t 16 131072 4 128 16384 16 - 1338368 - " > ./results/cachesim_result_28104_$t.txt
./cachesim $t 16 131072 4 128 16384 16 >> ./results/cachesim_result_28104_$t.txt &
echo -n "$t 16 131072 4 256 16384 16 - 1336832 - " > ./results/cachesim_result_28105_$t.txt
./cachesim $t 16 131072 4 256 16384 16 >> ./results/cachesim_result_28105_$t.txt &
echo -n "$t 16 131072 4 512 16384 16 - 1336064 - " > ./results/cachesim_result_28106_$t.txt
./cachesim $t 16 131072 4 512 16384 16 >> ./results/cachesim_result_28106_$t.txt &
echo -n "$t 16 131072 4 1024 16384 16 - 1335680 - " > ./results/cachesim_result_28107_$t.txt
./cachesim $t 16 131072 4 1024 16384 16 >> ./results/cachesim_result_28107_$t.txt &
echo -n "$t 16 131072 4 16 16384 32 - 1360896 - " > ./results/cachesim_result_28108_$t.txt
./cachesim $t 16 131072 4 16 16384 32 >> ./results/cachesim_result_28108_$t.txt &
echo -n "$t 16 131072 4 32 16384 32 - 1348096 - " > ./results/cachesim_result_28109_$t.txt
./cachesim $t 16 131072 4 32 16384 32 >> ./results/cachesim_result_28109_$t.txt &
echo -n "$t 16 131072 4 64 16384 32 - 1341696 - " > ./results/cachesim_result_28110_$t.txt
./cachesim $t 16 131072 4 64 16384 32 >> ./results/cachesim_result_28110_$t.txt &
echo -n "$t 16 131072 4 128 16384 32 - 1338496 - " > ./results/cachesim_result_28111_$t.txt
./cachesim $t 16 131072 4 128 16384 32 >> ./results/cachesim_result_28111_$t.txt &
echo -n "$t 16 131072 4 256 16384 32 - 1336896 - " > ./results/cachesim_result_28112_$t.txt
./cachesim $t 16 131072 4 256 16384 32 >> ./results/cachesim_result_28112_$t.txt &
echo -n "$t 16 131072 4 512 16384 32 - 1336096 - " > ./results/cachesim_result_28113_$t.txt
./cachesim $t 16 131072 4 512 16384 32 >> ./results/cachesim_result_28113_$t.txt &
echo -n "$t 16 131072 4 32 32768 1 - 1485824 - " > ./results/cachesim_result_28114_$t.txt
./cachesim $t 16 131072 4 32 32768 1 >> ./results/cachesim_result_28114_$t.txt &
echo -n "$t 16 131072 4 64 32768 1 - 1476096 - " > ./results/cachesim_result_28115_$t.txt
./cachesim $t 16 131072 4 64 32768 1 >> ./results/cachesim_result_28115_$t.txt &
echo -n "$t 16 131072 4 128 32768 1 - 1471232 - " > ./results/cachesim_result_28116_$t.txt
./cachesim $t 16 131072 4 128 32768 1 >> ./results/cachesim_result_28116_$t.txt &
echo -n "$t 16 131072 4 256 32768 1 - 1468800 - " > ./results/cachesim_result_28117_$t.txt
./cachesim $t 16 131072 4 256 32768 1 >> ./results/cachesim_result_28117_$t.txt &
echo -n "$t 16 131072 4 512 32768 1 - 1467584 - " > ./results/cachesim_result_28118_$t.txt
./cachesim $t 16 131072 4 512 32768 1 >> ./results/cachesim_result_28118_$t.txt &
echo -n "$t 16 131072 4 1024 32768 1 - 1466976 - " > ./results/cachesim_result_28119_$t.txt
./cachesim $t 16 131072 4 1024 32768 1 >> ./results/cachesim_result_28119_$t.txt &
echo -n "$t 16 131072 4 32 32768 2 - 1486848 - " > ./results/cachesim_result_28120_$t.txt
./cachesim $t 16 131072 4 32 32768 2 >> ./results/cachesim_result_28120_$t.txt &
echo -n "$t 16 131072 4 64 32768 2 - 1476608 - " > ./results/cachesim_result_28121_$t.txt
./cachesim $t 16 131072 4 64 32768 2 >> ./results/cachesim_result_28121_$t.txt &
echo -n "$t 16 131072 4 128 32768 2 - 1471488 - " > ./results/cachesim_result_28122_$t.txt
./cachesim $t 16 131072 4 128 32768 2 >> ./results/cachesim_result_28122_$t.txt &
echo -n "$t 16 131072 4 256 32768 2 - 1468928 - " > ./results/cachesim_result_28123_$t.txt
./cachesim $t 16 131072 4 256 32768 2 >> ./results/cachesim_result_28123_$t.txt &
echo -n "$t 16 131072 4 512 32768 2 - 1467648 - " > ./results/cachesim_result_28124_$t.txt
./cachesim $t 16 131072 4 512 32768 2 >> ./results/cachesim_result_28124_$t.txt &
echo -n "$t 16 131072 4 1024 32768 2 - 1467008 - " > ./results/cachesim_result_28125_$t.txt
./cachesim $t 16 131072 4 1024 32768 2 >> ./results/cachesim_result_28125_$t.txt &
echo -n "$t 16 131072 4 32 32768 4 - 1487872 - " > ./results/cachesim_result_28126_$t.txt
./cachesim $t 16 131072 4 32 32768 4 >> ./results/cachesim_result_28126_$t.txt &
echo -n "$t 16 131072 4 64 32768 4 - 1477120 - " > ./results/cachesim_result_28127_$t.txt
./cachesim $t 16 131072 4 64 32768 4 >> ./results/cachesim_result_28127_$t.txt &
echo -n "$t 16 131072 4 128 32768 4 - 1471744 - " > ./results/cachesim_result_28128_$t.txt
./cachesim $t 16 131072 4 128 32768 4 >> ./results/cachesim_result_28128_$t.txt &
echo -n "$t 16 131072 4 256 32768 4 - 1469056 - " > ./results/cachesim_result_28129_$t.txt
./cachesim $t 16 131072 4 256 32768 4 >> ./results/cachesim_result_28129_$t.txt &
echo -n "$t 16 131072 4 512 32768 4 - 1467712 - " > ./results/cachesim_result_28130_$t.txt
./cachesim $t 16 131072 4 512 32768 4 >> ./results/cachesim_result_28130_$t.txt &
echo -n "$t 16 131072 4 1024 32768 4 - 1467040 - " > ./results/cachesim_result_28131_$t.txt
./cachesim $t 16 131072 4 1024 32768 4 >> ./results/cachesim_result_28131_$t.txt &
echo -n "$t 16 131072 4 32 32768 8 - 1488896 - " > ./results/cachesim_result_28132_$t.txt
./cachesim $t 16 131072 4 32 32768 8 >> ./results/cachesim_result_28132_$t.txt &
echo -n "$t 16 131072 4 64 32768 8 - 1477632 - " > ./results/cachesim_result_28133_$t.txt
./cachesim $t 16 131072 4 64 32768 8 >> ./results/cachesim_result_28133_$t.txt &
echo -n "$t 16 131072 4 128 32768 8 - 1472000 - " > ./results/cachesim_result_28134_$t.txt
./cachesim $t 16 131072 4 128 32768 8 >> ./results/cachesim_result_28134_$t.txt &
echo -n "$t 16 131072 4 256 32768 8 - 1469184 - " > ./results/cachesim_result_28135_$t.txt
./cachesim $t 16 131072 4 256 32768 8 >> ./results/cachesim_result_28135_$t.txt &
echo -n "$t 16 131072 4 512 32768 8 - 1467776 - " > ./results/cachesim_result_28136_$t.txt
./cachesim $t 16 131072 4 512 32768 8 >> ./results/cachesim_result_28136_$t.txt &
echo -n "$t 16 131072 4 1024 32768 8 - 1467072 - " > ./results/cachesim_result_28137_$t.txt
./cachesim $t 16 131072 4 1024 32768 8 >> ./results/cachesim_result_28137_$t.txt &
echo -n "$t 16 131072 4 32 32768 16 - 1489920 - " > ./results/cachesim_result_28138_$t.txt
./cachesim $t 16 131072 4 32 32768 16 >> ./results/cachesim_result_28138_$t.txt &
echo -n "$t 16 131072 4 64 32768 16 - 1478144 - " > ./results/cachesim_result_28139_$t.txt
./cachesim $t 16 131072 4 64 32768 16 >> ./results/cachesim_result_28139_$t.txt &
echo -n "$t 16 131072 4 128 32768 16 - 1472256 - " > ./results/cachesim_result_28140_$t.txt
./cachesim $t 16 131072 4 128 32768 16 >> ./results/cachesim_result_28140_$t.txt &
echo -n "$t 16 131072 4 256 32768 16 - 1469312 - " > ./results/cachesim_result_28141_$t.txt
./cachesim $t 16 131072 4 256 32768 16 >> ./results/cachesim_result_28141_$t.txt &
echo -n "$t 16 131072 4 512 32768 16 - 1467840 - " > ./results/cachesim_result_28142_$t.txt
./cachesim $t 16 131072 4 512 32768 16 >> ./results/cachesim_result_28142_$t.txt &
echo -n "$t 16 131072 4 1024 32768 16 - 1467104 - " > ./results/cachesim_result_28143_$t.txt
./cachesim $t 16 131072 4 1024 32768 16 >> ./results/cachesim_result_28143_$t.txt &
echo -n "$t 16 131072 4 32 32768 32 - 1490944 - " > ./results/cachesim_result_28144_$t.txt
./cachesim $t 16 131072 4 32 32768 32 >> ./results/cachesim_result_28144_$t.txt &
echo -n "$t 16 131072 4 64 32768 32 - 1478656 - " > ./results/cachesim_result_28145_$t.txt
./cachesim $t 16 131072 4 64 32768 32 >> ./results/cachesim_result_28145_$t.txt &
echo -n "$t 16 131072 4 128 32768 32 - 1472512 - " > ./results/cachesim_result_28146_$t.txt
./cachesim $t 16 131072 4 128 32768 32 >> ./results/cachesim_result_28146_$t.txt &
echo -n "$t 16 131072 4 256 32768 32 - 1469440 - " > ./results/cachesim_result_28147_$t.txt
./cachesim $t 16 131072 4 256 32768 32 >> ./results/cachesim_result_28147_$t.txt &
echo -n "$t 16 131072 4 512 32768 32 - 1467904 - " > ./results/cachesim_result_28148_$t.txt
./cachesim $t 16 131072 4 512 32768 32 >> ./results/cachesim_result_28148_$t.txt &
echo -n "$t 16 131072 4 1024 32768 32 - 1467136 - " > ./results/cachesim_result_28149_$t.txt
./cachesim $t 16 131072 4 1024 32768 32 >> ./results/cachesim_result_28149_$t.txt &
echo -n "$t 32 131072 4 32 4096 1 - 1161984 - " > ./results/cachesim_result_28150_$t.txt
./cachesim $t 32 131072 4 32 4096 1 >> ./results/cachesim_result_28150_$t.txt &
echo -n "$t 32 131072 4 64 4096 1 - 1160576 - " > ./results/cachesim_result_28151_$t.txt
./cachesim $t 32 131072 4 64 4096 1 >> ./results/cachesim_result_28151_$t.txt &
echo -n "$t 32 131072 4 128 4096 1 - 1159872 - " > ./results/cachesim_result_28152_$t.txt
./cachesim $t 32 131072 4 128 4096 1 >> ./results/cachesim_result_28152_$t.txt &
echo -n "$t 32 131072 4 256 4096 1 - 1159520 - " > ./results/cachesim_result_28153_$t.txt
./cachesim $t 32 131072 4 256 4096 1 >> ./results/cachesim_result_28153_$t.txt &
echo -n "$t 32 131072 4 512 4096 1 - 1159344 - " > ./results/cachesim_result_28154_$t.txt
./cachesim $t 32 131072 4 512 4096 1 >> ./results/cachesim_result_28154_$t.txt &
echo -n "$t 32 131072 4 1024 4096 1 - 1159256 - " > ./results/cachesim_result_28155_$t.txt
./cachesim $t 32 131072 4 1024 4096 1 >> ./results/cachesim_result_28155_$t.txt &
echo -n "$t 32 131072 4 32 4096 2 - 1162112 - " > ./results/cachesim_result_28156_$t.txt
./cachesim $t 32 131072 4 32 4096 2 >> ./results/cachesim_result_28156_$t.txt &
echo -n "$t 32 131072 4 64 4096 2 - 1160640 - " > ./results/cachesim_result_28157_$t.txt
./cachesim $t 32 131072 4 64 4096 2 >> ./results/cachesim_result_28157_$t.txt &
echo -n "$t 32 131072 4 128 4096 2 - 1159904 - " > ./results/cachesim_result_28158_$t.txt
./cachesim $t 32 131072 4 128 4096 2 >> ./results/cachesim_result_28158_$t.txt &
echo -n "$t 32 131072 4 256 4096 2 - 1159536 - " > ./results/cachesim_result_28159_$t.txt
./cachesim $t 32 131072 4 256 4096 2 >> ./results/cachesim_result_28159_$t.txt &
echo -n "$t 32 131072 4 512 4096 2 - 1159352 - " > ./results/cachesim_result_28160_$t.txt
./cachesim $t 32 131072 4 512 4096 2 >> ./results/cachesim_result_28160_$t.txt &
echo -n "$t 32 131072 4 1024 4096 2 - 1159260 - " > ./results/cachesim_result_28161_$t.txt
./cachesim $t 32 131072 4 1024 4096 2 >> ./results/cachesim_result_28161_$t.txt &
echo -n "$t 32 131072 4 32 4096 4 - 1162240 - " > ./results/cachesim_result_28162_$t.txt
./cachesim $t 32 131072 4 32 4096 4 >> ./results/cachesim_result_28162_$t.txt &
echo -n "$t 32 131072 4 64 4096 4 - 1160704 - " > ./results/cachesim_result_28163_$t.txt
./cachesim $t 32 131072 4 64 4096 4 >> ./results/cachesim_result_28163_$t.txt &
echo -n "$t 32 131072 4 128 4096 4 - 1159936 - " > ./results/cachesim_result_28164_$t.txt
./cachesim $t 32 131072 4 128 4096 4 >> ./results/cachesim_result_28164_$t.txt &
echo -n "$t 32 131072 4 256 4096 4 - 1159552 - " > ./results/cachesim_result_28165_$t.txt
./cachesim $t 32 131072 4 256 4096 4 >> ./results/cachesim_result_28165_$t.txt &
echo -n "$t 32 131072 4 512 4096 4 - 1159360 - " > ./results/cachesim_result_28166_$t.txt
./cachesim $t 32 131072 4 512 4096 4 >> ./results/cachesim_result_28166_$t.txt &
echo -n "$t 32 131072 4 1024 4096 4 - 1159264 - " > ./results/cachesim_result_28167_$t.txt
./cachesim $t 32 131072 4 1024 4096 4 >> ./results/cachesim_result_28167_$t.txt &
echo -n "$t 32 131072 4 32 4096 8 - 1162368 - " > ./results/cachesim_result_28168_$t.txt
./cachesim $t 32 131072 4 32 4096 8 >> ./results/cachesim_result_28168_$t.txt &
echo -n "$t 32 131072 4 64 4096 8 - 1160768 - " > ./results/cachesim_result_28169_$t.txt
./cachesim $t 32 131072 4 64 4096 8 >> ./results/cachesim_result_28169_$t.txt &
echo -n "$t 32 131072 4 128 4096 8 - 1159968 - " > ./results/cachesim_result_28170_$t.txt
./cachesim $t 32 131072 4 128 4096 8 >> ./results/cachesim_result_28170_$t.txt &
echo -n "$t 32 131072 4 256 4096 8 - 1159568 - " > ./results/cachesim_result_28171_$t.txt
./cachesim $t 32 131072 4 256 4096 8 >> ./results/cachesim_result_28171_$t.txt &
echo -n "$t 32 131072 4 512 4096 8 - 1159368 - " > ./results/cachesim_result_28172_$t.txt
./cachesim $t 32 131072 4 512 4096 8 >> ./results/cachesim_result_28172_$t.txt &
echo -n "$t 32 131072 4 32 4096 16 - 1162496 - " > ./results/cachesim_result_28173_$t.txt
./cachesim $t 32 131072 4 32 4096 16 >> ./results/cachesim_result_28173_$t.txt &
echo -n "$t 32 131072 4 64 4096 16 - 1160832 - " > ./results/cachesim_result_28174_$t.txt
./cachesim $t 32 131072 4 64 4096 16 >> ./results/cachesim_result_28174_$t.txt &
echo -n "$t 32 131072 4 128 4096 16 - 1160000 - " > ./results/cachesim_result_28175_$t.txt
./cachesim $t 32 131072 4 128 4096 16 >> ./results/cachesim_result_28175_$t.txt &
echo -n "$t 32 131072 4 256 4096 16 - 1159584 - " > ./results/cachesim_result_28176_$t.txt
./cachesim $t 32 131072 4 256 4096 16 >> ./results/cachesim_result_28176_$t.txt &
echo -n "$t 32 131072 4 32 4096 32 - 1162624 - " > ./results/cachesim_result_28177_$t.txt
./cachesim $t 32 131072 4 32 4096 32 >> ./results/cachesim_result_28177_$t.txt &
echo -n "$t 32 131072 4 64 4096 32 - 1160896 - " > ./results/cachesim_result_28178_$t.txt
./cachesim $t 32 131072 4 64 4096 32 >> ./results/cachesim_result_28178_$t.txt &
echo -n "$t 32 131072 4 128 4096 32 - 1160032 - " > ./results/cachesim_result_28179_$t.txt
./cachesim $t 32 131072 4 128 4096 32 >> ./results/cachesim_result_28179_$t.txt &
echo -n "$t 32 131072 4 32 8192 1 - 1197312 - " > ./results/cachesim_result_28180_$t.txt
./cachesim $t 32 131072 4 32 8192 1 >> ./results/cachesim_result_28180_$t.txt &
echo -n "$t 32 131072 4 64 8192 1 - 1194624 - " > ./results/cachesim_result_28181_$t.txt
./cachesim $t 32 131072 4 64 8192 1 >> ./results/cachesim_result_28181_$t.txt &
echo -n "$t 32 131072 4 128 8192 1 - 1193280 - " > ./results/cachesim_result_28182_$t.txt
./cachesim $t 32 131072 4 128 8192 1 >> ./results/cachesim_result_28182_$t.txt &
echo -n "$t 32 131072 4 256 8192 1 - 1192608 - " > ./results/cachesim_result_28183_$t.txt
./cachesim $t 32 131072 4 256 8192 1 >> ./results/cachesim_result_28183_$t.txt &
echo -n "$t 32 131072 4 512 8192 1 - 1192272 - " > ./results/cachesim_result_28184_$t.txt
./cachesim $t 32 131072 4 512 8192 1 >> ./results/cachesim_result_28184_$t.txt &
echo -n "$t 32 131072 4 1024 8192 1 - 1192104 - " > ./results/cachesim_result_28185_$t.txt
./cachesim $t 32 131072 4 1024 8192 1 >> ./results/cachesim_result_28185_$t.txt &
echo -n "$t 32 131072 4 32 8192 2 - 1197568 - " > ./results/cachesim_result_28186_$t.txt
./cachesim $t 32 131072 4 32 8192 2 >> ./results/cachesim_result_28186_$t.txt &
echo -n "$t 32 131072 4 64 8192 2 - 1194752 - " > ./results/cachesim_result_28187_$t.txt
./cachesim $t 32 131072 4 64 8192 2 >> ./results/cachesim_result_28187_$t.txt &
echo -n "$t 32 131072 4 128 8192 2 - 1193344 - " > ./results/cachesim_result_28188_$t.txt
./cachesim $t 32 131072 4 128 8192 2 >> ./results/cachesim_result_28188_$t.txt &
echo -n "$t 32 131072 4 256 8192 2 - 1192640 - " > ./results/cachesim_result_28189_$t.txt
./cachesim $t 32 131072 4 256 8192 2 >> ./results/cachesim_result_28189_$t.txt &
echo -n "$t 32 131072 4 512 8192 2 - 1192288 - " > ./results/cachesim_result_28190_$t.txt
./cachesim $t 32 131072 4 512 8192 2 >> ./results/cachesim_result_28190_$t.txt &
echo -n "$t 32 131072 4 1024 8192 2 - 1192112 - " > ./results/cachesim_result_28191_$t.txt
./cachesim $t 32 131072 4 1024 8192 2 >> ./results/cachesim_result_28191_$t.txt &
echo -n "$t 32 131072 4 32 8192 4 - 1197824 - " > ./results/cachesim_result_28192_$t.txt
./cachesim $t 32 131072 4 32 8192 4 >> ./results/cachesim_result_28192_$t.txt &
echo -n "$t 32 131072 4 64 8192 4 - 1194880 - " > ./results/cachesim_result_28193_$t.txt
./cachesim $t 32 131072 4 64 8192 4 >> ./results/cachesim_result_28193_$t.txt &
echo -n "$t 32 131072 4 128 8192 4 - 1193408 - " > ./results/cachesim_result_28194_$t.txt
./cachesim $t 32 131072 4 128 8192 4 >> ./results/cachesim_result_28194_$t.txt &
echo -n "$t 32 131072 4 256 8192 4 - 1192672 - " > ./results/cachesim_result_28195_$t.txt
./cachesim $t 32 131072 4 256 8192 4 >> ./results/cachesim_result_28195_$t.txt &
echo -n "$t 32 131072 4 512 8192 4 - 1192304 - " > ./results/cachesim_result_28196_$t.txt
./cachesim $t 32 131072 4 512 8192 4 >> ./results/cachesim_result_28196_$t.txt &
echo -n "$t 32 131072 4 1024 8192 4 - 1192120 - " > ./results/cachesim_result_28197_$t.txt
./cachesim $t 32 131072 4 1024 8192 4 >> ./results/cachesim_result_28197_$t.txt &
echo -n "$t 32 131072 4 32 8192 8 - 1198080 - " > ./results/cachesim_result_28198_$t.txt
./cachesim $t 32 131072 4 32 8192 8 >> ./results/cachesim_result_28198_$t.txt &
echo -n "$t 32 131072 4 64 8192 8 - 1195008 - " > ./results/cachesim_result_28199_$t.txt
./cachesim $t 32 131072 4 64 8192 8 >> ./results/cachesim_result_28199_$t.txt &
echo -n "$t 32 131072 4 128 8192 8 - 1193472 - " > ./results/cachesim_result_28200_$t.txt
./cachesim $t 32 131072 4 128 8192 8 >> ./results/cachesim_result_28200_$t.txt &
echo -n "$t 32 131072 4 256 8192 8 - 1192704 - " > ./results/cachesim_result_28201_$t.txt
./cachesim $t 32 131072 4 256 8192 8 >> ./results/cachesim_result_28201_$t.txt &
echo -n "$t 32 131072 4 512 8192 8 - 1192320 - " > ./results/cachesim_result_28202_$t.txt
./cachesim $t 32 131072 4 512 8192 8 >> ./results/cachesim_result_28202_$t.txt &
echo -n "$t 32 131072 4 1024 8192 8 - 1192128 - " > ./results/cachesim_result_28203_$t.txt
./cachesim $t 32 131072 4 1024 8192 8 >> ./results/cachesim_result_28203_$t.txt &
echo -n "$t 32 131072 4 32 8192 16 - 1198336 - " > ./results/cachesim_result_28204_$t.txt
./cachesim $t 32 131072 4 32 8192 16 >> ./results/cachesim_result_28204_$t.txt &
echo -n "$t 32 131072 4 64 8192 16 - 1195136 - " > ./results/cachesim_result_28205_$t.txt
./cachesim $t 32 131072 4 64 8192 16 >> ./results/cachesim_result_28205_$t.txt &
echo -n "$t 32 131072 4 128 8192 16 - 1193536 - " > ./results/cachesim_result_28206_$t.txt
./cachesim $t 32 131072 4 128 8192 16 >> ./results/cachesim_result_28206_$t.txt &
echo -n "$t 32 131072 4 256 8192 16 - 1192736 - " > ./results/cachesim_result_28207_$t.txt
./cachesim $t 32 131072 4 256 8192 16 >> ./results/cachesim_result_28207_$t.txt &
echo -n "$t 32 131072 4 512 8192 16 - 1192336 - " > ./results/cachesim_result_28208_$t.txt
./cachesim $t 32 131072 4 512 8192 16 >> ./results/cachesim_result_28208_$t.txt &
echo -n "$t 32 131072 4 32 8192 32 - 1198592 - " > ./results/cachesim_result_28209_$t.txt
./cachesim $t 32 131072 4 32 8192 32 >> ./results/cachesim_result_28209_$t.txt &
echo -n "$t 32 131072 4 64 8192 32 - 1195264 - " > ./results/cachesim_result_28210_$t.txt
./cachesim $t 32 131072 4 64 8192 32 >> ./results/cachesim_result_28210_$t.txt &
echo -n "$t 32 131072 4 128 8192 32 - 1193600 - " > ./results/cachesim_result_28211_$t.txt
./cachesim $t 32 131072 4 128 8192 32 >> ./results/cachesim_result_28211_$t.txt &
echo -n "$t 32 131072 4 256 8192 32 - 1192768 - " > ./results/cachesim_result_28212_$t.txt
./cachesim $t 32 131072 4 256 8192 32 >> ./results/cachesim_result_28212_$t.txt &
echo -n "$t 32 131072 4 32 16384 1 - 1267712 - " > ./results/cachesim_result_28213_$t.txt
./cachesim $t 32 131072 4 32 16384 1 >> ./results/cachesim_result_28213_$t.txt &
echo -n "$t 32 131072 4 64 16384 1 - 1262592 - " > ./results/cachesim_result_28214_$t.txt
./cachesim $t 32 131072 4 64 16384 1 >> ./results/cachesim_result_28214_$t.txt &
echo -n "$t 32 131072 4 128 16384 1 - 1260032 - " > ./results/cachesim_result_28215_$t.txt
./cachesim $t 32 131072 4 128 16384 1 >> ./results/cachesim_result_28215_$t.txt &
echo -n "$t 32 131072 4 256 16384 1 - 1258752 - " > ./results/cachesim_result_28216_$t.txt
./cachesim $t 32 131072 4 256 16384 1 >> ./results/cachesim_result_28216_$t.txt &
echo -n "$t 32 131072 4 512 16384 1 - 1258112 - " > ./results/cachesim_result_28217_$t.txt
./cachesim $t 32 131072 4 512 16384 1 >> ./results/cachesim_result_28217_$t.txt &
echo -n "$t 32 131072 4 1024 16384 1 - 1257792 - " > ./results/cachesim_result_28218_$t.txt
./cachesim $t 32 131072 4 1024 16384 1 >> ./results/cachesim_result_28218_$t.txt &
echo -n "$t 32 131072 4 32 16384 2 - 1268224 - " > ./results/cachesim_result_28219_$t.txt
./cachesim $t 32 131072 4 32 16384 2 >> ./results/cachesim_result_28219_$t.txt &
echo -n "$t 32 131072 4 64 16384 2 - 1262848 - " > ./results/cachesim_result_28220_$t.txt
./cachesim $t 32 131072 4 64 16384 2 >> ./results/cachesim_result_28220_$t.txt &
echo -n "$t 32 131072 4 128 16384 2 - 1260160 - " > ./results/cachesim_result_28221_$t.txt
./cachesim $t 32 131072 4 128 16384 2 >> ./results/cachesim_result_28221_$t.txt &
echo -n "$t 32 131072 4 256 16384 2 - 1258816 - " > ./results/cachesim_result_28222_$t.txt
./cachesim $t 32 131072 4 256 16384 2 >> ./results/cachesim_result_28222_$t.txt &
echo -n "$t 32 131072 4 512 16384 2 - 1258144 - " > ./results/cachesim_result_28223_$t.txt
./cachesim $t 32 131072 4 512 16384 2 >> ./results/cachesim_result_28223_$t.txt &
echo -n "$t 32 131072 4 1024 16384 2 - 1257808 - " > ./results/cachesim_result_28224_$t.txt
./cachesim $t 32 131072 4 1024 16384 2 >> ./results/cachesim_result_28224_$t.txt &
echo -n "$t 32 131072 4 32 16384 4 - 1268736 - " > ./results/cachesim_result_28225_$t.txt
./cachesim $t 32 131072 4 32 16384 4 >> ./results/cachesim_result_28225_$t.txt &
echo -n "$t 32 131072 4 64 16384 4 - 1263104 - " > ./results/cachesim_result_28226_$t.txt
./cachesim $t 32 131072 4 64 16384 4 >> ./results/cachesim_result_28226_$t.txt &
echo -n "$t 32 131072 4 128 16384 4 - 1260288 - " > ./results/cachesim_result_28227_$t.txt
./cachesim $t 32 131072 4 128 16384 4 >> ./results/cachesim_result_28227_$t.txt &
echo -n "$t 32 131072 4 256 16384 4 - 1258880 - " > ./results/cachesim_result_28228_$t.txt
./cachesim $t 32 131072 4 256 16384 4 >> ./results/cachesim_result_28228_$t.txt &
echo -n "$t 32 131072 4 512 16384 4 - 1258176 - " > ./results/cachesim_result_28229_$t.txt
./cachesim $t 32 131072 4 512 16384 4 >> ./results/cachesim_result_28229_$t.txt &
echo -n "$t 32 131072 4 1024 16384 4 - 1257824 - " > ./results/cachesim_result_28230_$t.txt
./cachesim $t 32 131072 4 1024 16384 4 >> ./results/cachesim_result_28230_$t.txt &
echo -n "$t 32 131072 4 32 16384 8 - 1269248 - " > ./results/cachesim_result_28231_$t.txt
./cachesim $t 32 131072 4 32 16384 8 >> ./results/cachesim_result_28231_$t.txt &
echo -n "$t 32 131072 4 64 16384 8 - 1263360 - " > ./results/cachesim_result_28232_$t.txt
./cachesim $t 32 131072 4 64 16384 8 >> ./results/cachesim_result_28232_$t.txt &
echo -n "$t 32 131072 4 128 16384 8 - 1260416 - " > ./results/cachesim_result_28233_$t.txt
./cachesim $t 32 131072 4 128 16384 8 >> ./results/cachesim_result_28233_$t.txt &
echo -n "$t 32 131072 4 256 16384 8 - 1258944 - " > ./results/cachesim_result_28234_$t.txt
./cachesim $t 32 131072 4 256 16384 8 >> ./results/cachesim_result_28234_$t.txt &
echo -n "$t 32 131072 4 512 16384 8 - 1258208 - " > ./results/cachesim_result_28235_$t.txt
./cachesim $t 32 131072 4 512 16384 8 >> ./results/cachesim_result_28235_$t.txt &
echo -n "$t 32 131072 4 1024 16384 8 - 1257840 - " > ./results/cachesim_result_28236_$t.txt
./cachesim $t 32 131072 4 1024 16384 8 >> ./results/cachesim_result_28236_$t.txt &
echo -n "$t 32 131072 4 32 16384 16 - 1269760 - " > ./results/cachesim_result_28237_$t.txt
./cachesim $t 32 131072 4 32 16384 16 >> ./results/cachesim_result_28237_$t.txt &
echo -n "$t 32 131072 4 64 16384 16 - 1263616 - " > ./results/cachesim_result_28238_$t.txt
./cachesim $t 32 131072 4 64 16384 16 >> ./results/cachesim_result_28238_$t.txt &
echo -n "$t 32 131072 4 128 16384 16 - 1260544 - " > ./results/cachesim_result_28239_$t.txt
./cachesim $t 32 131072 4 128 16384 16 >> ./results/cachesim_result_28239_$t.txt &
echo -n "$t 32 131072 4 256 16384 16 - 1259008 - " > ./results/cachesim_result_28240_$t.txt
./cachesim $t 32 131072 4 256 16384 16 >> ./results/cachesim_result_28240_$t.txt &
echo -n "$t 32 131072 4 512 16384 16 - 1258240 - " > ./results/cachesim_result_28241_$t.txt
./cachesim $t 32 131072 4 512 16384 16 >> ./results/cachesim_result_28241_$t.txt &
echo -n "$t 32 131072 4 1024 16384 16 - 1257856 - " > ./results/cachesim_result_28242_$t.txt
./cachesim $t 32 131072 4 1024 16384 16 >> ./results/cachesim_result_28242_$t.txt &
echo -n "$t 32 131072 4 32 16384 32 - 1270272 - " > ./results/cachesim_result_28243_$t.txt
./cachesim $t 32 131072 4 32 16384 32 >> ./results/cachesim_result_28243_$t.txt &
echo -n "$t 32 131072 4 64 16384 32 - 1263872 - " > ./results/cachesim_result_28244_$t.txt
./cachesim $t 32 131072 4 64 16384 32 >> ./results/cachesim_result_28244_$t.txt &
echo -n "$t 32 131072 4 128 16384 32 - 1260672 - " > ./results/cachesim_result_28245_$t.txt
./cachesim $t 32 131072 4 128 16384 32 >> ./results/cachesim_result_28245_$t.txt &
echo -n "$t 32 131072 4 256 16384 32 - 1259072 - " > ./results/cachesim_result_28246_$t.txt
./cachesim $t 32 131072 4 256 16384 32 >> ./results/cachesim_result_28246_$t.txt &
echo -n "$t 32 131072 4 512 16384 32 - 1258272 - " > ./results/cachesim_result_28247_$t.txt
./cachesim $t 32 131072 4 512 16384 32 >> ./results/cachesim_result_28247_$t.txt &
echo -n "$t 32 131072 4 32 32768 1 - 1408000 - " > ./results/cachesim_result_28248_$t.txt
./cachesim $t 32 131072 4 32 32768 1 >> ./results/cachesim_result_28248_$t.txt &
echo -n "$t 32 131072 4 64 32768 1 - 1398272 - " > ./results/cachesim_result_28249_$t.txt
./cachesim $t 32 131072 4 64 32768 1 >> ./results/cachesim_result_28249_$t.txt &
echo -n "$t 32 131072 4 128 32768 1 - 1393408 - " > ./results/cachesim_result_28250_$t.txt
./cachesim $t 32 131072 4 128 32768 1 >> ./results/cachesim_result_28250_$t.txt &
echo -n "$t 32 131072 4 256 32768 1 - 1390976 - " > ./results/cachesim_result_28251_$t.txt
./cachesim $t 32 131072 4 256 32768 1 >> ./results/cachesim_result_28251_$t.txt &
echo -n "$t 32 131072 4 512 32768 1 - 1389760 - " > ./results/cachesim_result_28252_$t.txt
./cachesim $t 32 131072 4 512 32768 1 >> ./results/cachesim_result_28252_$t.txt &
echo -n "$t 32 131072 4 1024 32768 1 - 1389152 - " > ./results/cachesim_result_28253_$t.txt
./cachesim $t 32 131072 4 1024 32768 1 >> ./results/cachesim_result_28253_$t.txt &
echo -n "$t 32 131072 4 32 32768 2 - 1409024 - " > ./results/cachesim_result_28254_$t.txt
./cachesim $t 32 131072 4 32 32768 2 >> ./results/cachesim_result_28254_$t.txt &
echo -n "$t 32 131072 4 64 32768 2 - 1398784 - " > ./results/cachesim_result_28255_$t.txt
./cachesim $t 32 131072 4 64 32768 2 >> ./results/cachesim_result_28255_$t.txt &
echo -n "$t 32 131072 4 128 32768 2 - 1393664 - " > ./results/cachesim_result_28256_$t.txt
./cachesim $t 32 131072 4 128 32768 2 >> ./results/cachesim_result_28256_$t.txt &
echo -n "$t 32 131072 4 256 32768 2 - 1391104 - " > ./results/cachesim_result_28257_$t.txt
./cachesim $t 32 131072 4 256 32768 2 >> ./results/cachesim_result_28257_$t.txt &
echo -n "$t 32 131072 4 512 32768 2 - 1389824 - " > ./results/cachesim_result_28258_$t.txt
./cachesim $t 32 131072 4 512 32768 2 >> ./results/cachesim_result_28258_$t.txt &
echo -n "$t 32 131072 4 1024 32768 2 - 1389184 - " > ./results/cachesim_result_28259_$t.txt
./cachesim $t 32 131072 4 1024 32768 2 >> ./results/cachesim_result_28259_$t.txt &
echo -n "$t 32 131072 4 32 32768 4 - 1410048 - " > ./results/cachesim_result_28260_$t.txt
./cachesim $t 32 131072 4 32 32768 4 >> ./results/cachesim_result_28260_$t.txt &
echo -n "$t 32 131072 4 64 32768 4 - 1399296 - " > ./results/cachesim_result_28261_$t.txt
./cachesim $t 32 131072 4 64 32768 4 >> ./results/cachesim_result_28261_$t.txt &
echo -n "$t 32 131072 4 128 32768 4 - 1393920 - " > ./results/cachesim_result_28262_$t.txt
./cachesim $t 32 131072 4 128 32768 4 >> ./results/cachesim_result_28262_$t.txt &
echo -n "$t 32 131072 4 256 32768 4 - 1391232 - " > ./results/cachesim_result_28263_$t.txt
./cachesim $t 32 131072 4 256 32768 4 >> ./results/cachesim_result_28263_$t.txt &
echo -n "$t 32 131072 4 512 32768 4 - 1389888 - " > ./results/cachesim_result_28264_$t.txt
./cachesim $t 32 131072 4 512 32768 4 >> ./results/cachesim_result_28264_$t.txt &
echo -n "$t 32 131072 4 1024 32768 4 - 1389216 - " > ./results/cachesim_result_28265_$t.txt
./cachesim $t 32 131072 4 1024 32768 4 >> ./results/cachesim_result_28265_$t.txt &
echo -n "$t 32 131072 4 32 32768 8 - 1411072 - " > ./results/cachesim_result_28266_$t.txt
./cachesim $t 32 131072 4 32 32768 8 >> ./results/cachesim_result_28266_$t.txt &
echo -n "$t 32 131072 4 64 32768 8 - 1399808 - " > ./results/cachesim_result_28267_$t.txt
./cachesim $t 32 131072 4 64 32768 8 >> ./results/cachesim_result_28267_$t.txt &
echo -n "$t 32 131072 4 128 32768 8 - 1394176 - " > ./results/cachesim_result_28268_$t.txt
./cachesim $t 32 131072 4 128 32768 8 >> ./results/cachesim_result_28268_$t.txt &
echo -n "$t 32 131072 4 256 32768 8 - 1391360 - " > ./results/cachesim_result_28269_$t.txt
./cachesim $t 32 131072 4 256 32768 8 >> ./results/cachesim_result_28269_$t.txt &
echo -n "$t 32 131072 4 512 32768 8 - 1389952 - " > ./results/cachesim_result_28270_$t.txt
./cachesim $t 32 131072 4 512 32768 8 >> ./results/cachesim_result_28270_$t.txt &
echo -n "$t 32 131072 4 1024 32768 8 - 1389248 - " > ./results/cachesim_result_28271_$t.txt
./cachesim $t 32 131072 4 1024 32768 8 >> ./results/cachesim_result_28271_$t.txt &
echo -n "$t 32 131072 4 32 32768 16 - 1412096 - " > ./results/cachesim_result_28272_$t.txt
./cachesim $t 32 131072 4 32 32768 16 >> ./results/cachesim_result_28272_$t.txt &
echo -n "$t 32 131072 4 64 32768 16 - 1400320 - " > ./results/cachesim_result_28273_$t.txt
./cachesim $t 32 131072 4 64 32768 16 >> ./results/cachesim_result_28273_$t.txt &
echo -n "$t 32 131072 4 128 32768 16 - 1394432 - " > ./results/cachesim_result_28274_$t.txt
./cachesim $t 32 131072 4 128 32768 16 >> ./results/cachesim_result_28274_$t.txt &
echo -n "$t 32 131072 4 256 32768 16 - 1391488 - " > ./results/cachesim_result_28275_$t.txt
./cachesim $t 32 131072 4 256 32768 16 >> ./results/cachesim_result_28275_$t.txt &
echo -n "$t 32 131072 4 512 32768 16 - 1390016 - " > ./results/cachesim_result_28276_$t.txt
./cachesim $t 32 131072 4 512 32768 16 >> ./results/cachesim_result_28276_$t.txt &
echo -n "$t 32 131072 4 1024 32768 16 - 1389280 - " > ./results/cachesim_result_28277_$t.txt
./cachesim $t 32 131072 4 1024 32768 16 >> ./results/cachesim_result_28277_$t.txt &
echo -n "$t 32 131072 4 32 32768 32 - 1413120 - " > ./results/cachesim_result_28278_$t.txt
./cachesim $t 32 131072 4 32 32768 32 >> ./results/cachesim_result_28278_$t.txt &
echo -n "$t 32 131072 4 64 32768 32 - 1400832 - " > ./results/cachesim_result_28279_$t.txt
./cachesim $t 32 131072 4 64 32768 32 >> ./results/cachesim_result_28279_$t.txt &
echo -n "$t 32 131072 4 128 32768 32 - 1394688 - " > ./results/cachesim_result_28280_$t.txt
./cachesim $t 32 131072 4 128 32768 32 >> ./results/cachesim_result_28280_$t.txt &
echo -n "$t 32 131072 4 256 32768 32 - 1391616 - " > ./results/cachesim_result_28281_$t.txt
./cachesim $t 32 131072 4 256 32768 32 >> ./results/cachesim_result_28281_$t.txt &
echo -n "$t 32 131072 4 512 32768 32 - 1390080 - " > ./results/cachesim_result_28282_$t.txt
./cachesim $t 32 131072 4 512 32768 32 >> ./results/cachesim_result_28282_$t.txt &
echo -n "$t 32 131072 4 1024 32768 32 - 1389312 - " > ./results/cachesim_result_28283_$t.txt
./cachesim $t 32 131072 4 1024 32768 32 >> ./results/cachesim_result_28283_$t.txt &
echo -n "$t 64 131072 4 64 4096 1 - 1121664 - " > ./results/cachesim_result_28284_$t.txt
./cachesim $t 64 131072 4 64 4096 1 >> ./results/cachesim_result_28284_$t.txt &
echo -n "$t 64 131072 4 128 4096 1 - 1120960 - " > ./results/cachesim_result_28285_$t.txt
./cachesim $t 64 131072 4 128 4096 1 >> ./results/cachesim_result_28285_$t.txt &
echo -n "$t 64 131072 4 256 4096 1 - 1120608 - " > ./results/cachesim_result_28286_$t.txt
./cachesim $t 64 131072 4 256 4096 1 >> ./results/cachesim_result_28286_$t.txt &
echo -n "$t 64 131072 4 512 4096 1 - 1120432 - " > ./results/cachesim_result_28287_$t.txt
./cachesim $t 64 131072 4 512 4096 1 >> ./results/cachesim_result_28287_$t.txt &
echo -n "$t 64 131072 4 1024 4096 1 - 1120344 - " > ./results/cachesim_result_28288_$t.txt
./cachesim $t 64 131072 4 1024 4096 1 >> ./results/cachesim_result_28288_$t.txt &
echo -n "$t 64 131072 4 64 4096 2 - 1121728 - " > ./results/cachesim_result_28289_$t.txt
./cachesim $t 64 131072 4 64 4096 2 >> ./results/cachesim_result_28289_$t.txt &
echo -n "$t 64 131072 4 128 4096 2 - 1120992 - " > ./results/cachesim_result_28290_$t.txt
./cachesim $t 64 131072 4 128 4096 2 >> ./results/cachesim_result_28290_$t.txt &
echo -n "$t 64 131072 4 256 4096 2 - 1120624 - " > ./results/cachesim_result_28291_$t.txt
./cachesim $t 64 131072 4 256 4096 2 >> ./results/cachesim_result_28291_$t.txt &
echo -n "$t 64 131072 4 512 4096 2 - 1120440 - " > ./results/cachesim_result_28292_$t.txt
./cachesim $t 64 131072 4 512 4096 2 >> ./results/cachesim_result_28292_$t.txt &
echo -n "$t 64 131072 4 1024 4096 2 - 1120348 - " > ./results/cachesim_result_28293_$t.txt
./cachesim $t 64 131072 4 1024 4096 2 >> ./results/cachesim_result_28293_$t.txt &
echo -n "$t 64 131072 4 64 4096 4 - 1121792 - " > ./results/cachesim_result_28294_$t.txt
./cachesim $t 64 131072 4 64 4096 4 >> ./results/cachesim_result_28294_$t.txt &
echo -n "$t 64 131072 4 128 4096 4 - 1121024 - " > ./results/cachesim_result_28295_$t.txt
./cachesim $t 64 131072 4 128 4096 4 >> ./results/cachesim_result_28295_$t.txt &
echo -n "$t 64 131072 4 256 4096 4 - 1120640 - " > ./results/cachesim_result_28296_$t.txt
./cachesim $t 64 131072 4 256 4096 4 >> ./results/cachesim_result_28296_$t.txt &
echo -n "$t 64 131072 4 512 4096 4 - 1120448 - " > ./results/cachesim_result_28297_$t.txt
./cachesim $t 64 131072 4 512 4096 4 >> ./results/cachesim_result_28297_$t.txt &
echo -n "$t 64 131072 4 1024 4096 4 - 1120352 - " > ./results/cachesim_result_28298_$t.txt
./cachesim $t 64 131072 4 1024 4096 4 >> ./results/cachesim_result_28298_$t.txt &
echo -n "$t 64 131072 4 64 4096 8 - 1121856 - " > ./results/cachesim_result_28299_$t.txt
./cachesim $t 64 131072 4 64 4096 8 >> ./results/cachesim_result_28299_$t.txt &
echo -n "$t 64 131072 4 128 4096 8 - 1121056 - " > ./results/cachesim_result_28300_$t.txt
./cachesim $t 64 131072 4 128 4096 8 >> ./results/cachesim_result_28300_$t.txt &
echo -n "$t 64 131072 4 256 4096 8 - 1120656 - " > ./results/cachesim_result_28301_$t.txt
./cachesim $t 64 131072 4 256 4096 8 >> ./results/cachesim_result_28301_$t.txt &
echo -n "$t 64 131072 4 512 4096 8 - 1120456 - " > ./results/cachesim_result_28302_$t.txt
./cachesim $t 64 131072 4 512 4096 8 >> ./results/cachesim_result_28302_$t.txt &
echo -n "$t 64 131072 4 64 4096 16 - 1121920 - " > ./results/cachesim_result_28303_$t.txt
./cachesim $t 64 131072 4 64 4096 16 >> ./results/cachesim_result_28303_$t.txt &
echo -n "$t 64 131072 4 128 4096 16 - 1121088 - " > ./results/cachesim_result_28304_$t.txt
./cachesim $t 64 131072 4 128 4096 16 >> ./results/cachesim_result_28304_$t.txt &
echo -n "$t 64 131072 4 256 4096 16 - 1120672 - " > ./results/cachesim_result_28305_$t.txt
./cachesim $t 64 131072 4 256 4096 16 >> ./results/cachesim_result_28305_$t.txt &
echo -n "$t 64 131072 4 64 4096 32 - 1121984 - " > ./results/cachesim_result_28306_$t.txt
./cachesim $t 64 131072 4 64 4096 32 >> ./results/cachesim_result_28306_$t.txt &
echo -n "$t 64 131072 4 128 4096 32 - 1121120 - " > ./results/cachesim_result_28307_$t.txt
./cachesim $t 64 131072 4 128 4096 32 >> ./results/cachesim_result_28307_$t.txt &
echo -n "$t 64 131072 4 64 8192 1 - 1155712 - " > ./results/cachesim_result_28308_$t.txt
./cachesim $t 64 131072 4 64 8192 1 >> ./results/cachesim_result_28308_$t.txt &
echo -n "$t 64 131072 4 128 8192 1 - 1154368 - " > ./results/cachesim_result_28309_$t.txt
./cachesim $t 64 131072 4 128 8192 1 >> ./results/cachesim_result_28309_$t.txt &
echo -n "$t 64 131072 4 256 8192 1 - 1153696 - " > ./results/cachesim_result_28310_$t.txt
./cachesim $t 64 131072 4 256 8192 1 >> ./results/cachesim_result_28310_$t.txt &
echo -n "$t 64 131072 4 512 8192 1 - 1153360 - " > ./results/cachesim_result_28311_$t.txt
./cachesim $t 64 131072 4 512 8192 1 >> ./results/cachesim_result_28311_$t.txt &
echo -n "$t 64 131072 4 1024 8192 1 - 1153192 - " > ./results/cachesim_result_28312_$t.txt
./cachesim $t 64 131072 4 1024 8192 1 >> ./results/cachesim_result_28312_$t.txt &
echo -n "$t 64 131072 4 64 8192 2 - 1155840 - " > ./results/cachesim_result_28313_$t.txt
./cachesim $t 64 131072 4 64 8192 2 >> ./results/cachesim_result_28313_$t.txt &
echo -n "$t 64 131072 4 128 8192 2 - 1154432 - " > ./results/cachesim_result_28314_$t.txt
./cachesim $t 64 131072 4 128 8192 2 >> ./results/cachesim_result_28314_$t.txt &
echo -n "$t 64 131072 4 256 8192 2 - 1153728 - " > ./results/cachesim_result_28315_$t.txt
./cachesim $t 64 131072 4 256 8192 2 >> ./results/cachesim_result_28315_$t.txt &
echo -n "$t 64 131072 4 512 8192 2 - 1153376 - " > ./results/cachesim_result_28316_$t.txt
./cachesim $t 64 131072 4 512 8192 2 >> ./results/cachesim_result_28316_$t.txt &
echo -n "$t 64 131072 4 1024 8192 2 - 1153200 - " > ./results/cachesim_result_28317_$t.txt
./cachesim $t 64 131072 4 1024 8192 2 >> ./results/cachesim_result_28317_$t.txt &
echo -n "$t 64 131072 4 64 8192 4 - 1155968 - " > ./results/cachesim_result_28318_$t.txt
./cachesim $t 64 131072 4 64 8192 4 >> ./results/cachesim_result_28318_$t.txt &
echo -n "$t 64 131072 4 128 8192 4 - 1154496 - " > ./results/cachesim_result_28319_$t.txt
./cachesim $t 64 131072 4 128 8192 4 >> ./results/cachesim_result_28319_$t.txt &
echo -n "$t 64 131072 4 256 8192 4 - 1153760 - " > ./results/cachesim_result_28320_$t.txt
./cachesim $t 64 131072 4 256 8192 4 >> ./results/cachesim_result_28320_$t.txt &
echo -n "$t 64 131072 4 512 8192 4 - 1153392 - " > ./results/cachesim_result_28321_$t.txt
./cachesim $t 64 131072 4 512 8192 4 >> ./results/cachesim_result_28321_$t.txt &
echo -n "$t 64 131072 4 1024 8192 4 - 1153208 - " > ./results/cachesim_result_28322_$t.txt
./cachesim $t 64 131072 4 1024 8192 4 >> ./results/cachesim_result_28322_$t.txt &
echo -n "$t 64 131072 4 64 8192 8 - 1156096 - " > ./results/cachesim_result_28323_$t.txt
./cachesim $t 64 131072 4 64 8192 8 >> ./results/cachesim_result_28323_$t.txt &
echo -n "$t 64 131072 4 128 8192 8 - 1154560 - " > ./results/cachesim_result_28324_$t.txt
./cachesim $t 64 131072 4 128 8192 8 >> ./results/cachesim_result_28324_$t.txt &
echo -n "$t 64 131072 4 256 8192 8 - 1153792 - " > ./results/cachesim_result_28325_$t.txt
./cachesim $t 64 131072 4 256 8192 8 >> ./results/cachesim_result_28325_$t.txt &
echo -n "$t 64 131072 4 512 8192 8 - 1153408 - " > ./results/cachesim_result_28326_$t.txt
./cachesim $t 64 131072 4 512 8192 8 >> ./results/cachesim_result_28326_$t.txt &
echo -n "$t 64 131072 4 1024 8192 8 - 1153216 - " > ./results/cachesim_result_28327_$t.txt
./cachesim $t 64 131072 4 1024 8192 8 >> ./results/cachesim_result_28327_$t.txt &
echo -n "$t 64 131072 4 64 8192 16 - 1156224 - " > ./results/cachesim_result_28328_$t.txt
./cachesim $t 64 131072 4 64 8192 16 >> ./results/cachesim_result_28328_$t.txt &
echo -n "$t 64 131072 4 128 8192 16 - 1154624 - " > ./results/cachesim_result_28329_$t.txt
./cachesim $t 64 131072 4 128 8192 16 >> ./results/cachesim_result_28329_$t.txt &
echo -n "$t 64 131072 4 256 8192 16 - 1153824 - " > ./results/cachesim_result_28330_$t.txt
./cachesim $t 64 131072 4 256 8192 16 >> ./results/cachesim_result_28330_$t.txt &
echo -n "$t 64 131072 4 512 8192 16 - 1153424 - " > ./results/cachesim_result_28331_$t.txt
./cachesim $t 64 131072 4 512 8192 16 >> ./results/cachesim_result_28331_$t.txt &
echo -n "$t 64 131072 4 64 8192 32 - 1156352 - " > ./results/cachesim_result_28332_$t.txt
./cachesim $t 64 131072 4 64 8192 32 >> ./results/cachesim_result_28332_$t.txt &
echo -n "$t 64 131072 4 128 8192 32 - 1154688 - " > ./results/cachesim_result_28333_$t.txt
./cachesim $t 64 131072 4 128 8192 32 >> ./results/cachesim_result_28333_$t.txt &
echo -n "$t 64 131072 4 256 8192 32 - 1153856 - " > ./results/cachesim_result_28334_$t.txt
./cachesim $t 64 131072 4 256 8192 32 >> ./results/cachesim_result_28334_$t.txt &
echo -n "$t 64 131072 4 64 16384 1 - 1223680 - " > ./results/cachesim_result_28335_$t.txt
./cachesim $t 64 131072 4 64 16384 1 >> ./results/cachesim_result_28335_$t.txt &
echo -n "$t 64 131072 4 128 16384 1 - 1221120 - " > ./results/cachesim_result_28336_$t.txt
./cachesim $t 64 131072 4 128 16384 1 >> ./results/cachesim_result_28336_$t.txt &
echo -n "$t 64 131072 4 256 16384 1 - 1219840 - " > ./results/cachesim_result_28337_$t.txt
./cachesim $t 64 131072 4 256 16384 1 >> ./results/cachesim_result_28337_$t.txt &
echo -n "$t 64 131072 4 512 16384 1 - 1219200 - " > ./results/cachesim_result_28338_$t.txt
./cachesim $t 64 131072 4 512 16384 1 >> ./results/cachesim_result_28338_$t.txt &
echo -n "$t 64 131072 4 1024 16384 1 - 1218880 - " > ./results/cachesim_result_28339_$t.txt
./cachesim $t 64 131072 4 1024 16384 1 >> ./results/cachesim_result_28339_$t.txt &
echo -n "$t 64 131072 4 64 16384 2 - 1223936 - " > ./results/cachesim_result_28340_$t.txt
./cachesim $t 64 131072 4 64 16384 2 >> ./results/cachesim_result_28340_$t.txt &
echo -n "$t 64 131072 4 128 16384 2 - 1221248 - " > ./results/cachesim_result_28341_$t.txt
./cachesim $t 64 131072 4 128 16384 2 >> ./results/cachesim_result_28341_$t.txt &
echo -n "$t 64 131072 4 256 16384 2 - 1219904 - " > ./results/cachesim_result_28342_$t.txt
./cachesim $t 64 131072 4 256 16384 2 >> ./results/cachesim_result_28342_$t.txt &
echo -n "$t 64 131072 4 512 16384 2 - 1219232 - " > ./results/cachesim_result_28343_$t.txt
./cachesim $t 64 131072 4 512 16384 2 >> ./results/cachesim_result_28343_$t.txt &
echo -n "$t 64 131072 4 1024 16384 2 - 1218896 - " > ./results/cachesim_result_28344_$t.txt
./cachesim $t 64 131072 4 1024 16384 2 >> ./results/cachesim_result_28344_$t.txt &
echo -n "$t 64 131072 4 64 16384 4 - 1224192 - " > ./results/cachesim_result_28345_$t.txt
./cachesim $t 64 131072 4 64 16384 4 >> ./results/cachesim_result_28345_$t.txt &
echo -n "$t 64 131072 4 128 16384 4 - 1221376 - " > ./results/cachesim_result_28346_$t.txt
./cachesim $t 64 131072 4 128 16384 4 >> ./results/cachesim_result_28346_$t.txt &
echo -n "$t 64 131072 4 256 16384 4 - 1219968 - " > ./results/cachesim_result_28347_$t.txt
./cachesim $t 64 131072 4 256 16384 4 >> ./results/cachesim_result_28347_$t.txt &
echo -n "$t 64 131072 4 512 16384 4 - 1219264 - " > ./results/cachesim_result_28348_$t.txt
./cachesim $t 64 131072 4 512 16384 4 >> ./results/cachesim_result_28348_$t.txt &
echo -n "$t 64 131072 4 1024 16384 4 - 1218912 - " > ./results/cachesim_result_28349_$t.txt
./cachesim $t 64 131072 4 1024 16384 4 >> ./results/cachesim_result_28349_$t.txt &
echo -n "$t 64 131072 4 64 16384 8 - 1224448 - " > ./results/cachesim_result_28350_$t.txt
./cachesim $t 64 131072 4 64 16384 8 >> ./results/cachesim_result_28350_$t.txt &
echo -n "$t 64 131072 4 128 16384 8 - 1221504 - " > ./results/cachesim_result_28351_$t.txt
./cachesim $t 64 131072 4 128 16384 8 >> ./results/cachesim_result_28351_$t.txt &
echo -n "$t 64 131072 4 256 16384 8 - 1220032 - " > ./results/cachesim_result_28352_$t.txt
./cachesim $t 64 131072 4 256 16384 8 >> ./results/cachesim_result_28352_$t.txt &
echo -n "$t 64 131072 4 512 16384 8 - 1219296 - " > ./results/cachesim_result_28353_$t.txt
./cachesim $t 64 131072 4 512 16384 8 >> ./results/cachesim_result_28353_$t.txt &
echo -n "$t 64 131072 4 1024 16384 8 - 1218928 - " > ./results/cachesim_result_28354_$t.txt
./cachesim $t 64 131072 4 1024 16384 8 >> ./results/cachesim_result_28354_$t.txt &
echo -n "$t 64 131072 4 64 16384 16 - 1224704 - " > ./results/cachesim_result_28355_$t.txt
./cachesim $t 64 131072 4 64 16384 16 >> ./results/cachesim_result_28355_$t.txt &
echo -n "$t 64 131072 4 128 16384 16 - 1221632 - " > ./results/cachesim_result_28356_$t.txt
./cachesim $t 64 131072 4 128 16384 16 >> ./results/cachesim_result_28356_$t.txt &
echo -n "$t 64 131072 4 256 16384 16 - 1220096 - " > ./results/cachesim_result_28357_$t.txt
./cachesim $t 64 131072 4 256 16384 16 >> ./results/cachesim_result_28357_$t.txt &
echo -n "$t 64 131072 4 512 16384 16 - 1219328 - " > ./results/cachesim_result_28358_$t.txt
./cachesim $t 64 131072 4 512 16384 16 >> ./results/cachesim_result_28358_$t.txt &
echo -n "$t 64 131072 4 1024 16384 16 - 1218944 - " > ./results/cachesim_result_28359_$t.txt
./cachesim $t 64 131072 4 1024 16384 16 >> ./results/cachesim_result_28359_$t.txt &
echo -n "$t 64 131072 4 64 16384 32 - 1224960 - " > ./results/cachesim_result_28360_$t.txt
./cachesim $t 64 131072 4 64 16384 32 >> ./results/cachesim_result_28360_$t.txt &
echo -n "$t 64 131072 4 128 16384 32 - 1221760 - " > ./results/cachesim_result_28361_$t.txt
./cachesim $t 64 131072 4 128 16384 32 >> ./results/cachesim_result_28361_$t.txt &
echo -n "$t 64 131072 4 256 16384 32 - 1220160 - " > ./results/cachesim_result_28362_$t.txt
./cachesim $t 64 131072 4 256 16384 32 >> ./results/cachesim_result_28362_$t.txt &
echo -n "$t 64 131072 4 512 16384 32 - 1219360 - " > ./results/cachesim_result_28363_$t.txt
./cachesim $t 64 131072 4 512 16384 32 >> ./results/cachesim_result_28363_$t.txt &
echo -n "$t 64 131072 4 64 32768 1 - 1359360 - " > ./results/cachesim_result_28364_$t.txt
./cachesim $t 64 131072 4 64 32768 1 >> ./results/cachesim_result_28364_$t.txt &
echo -n "$t 64 131072 4 128 32768 1 - 1354496 - " > ./results/cachesim_result_28365_$t.txt
./cachesim $t 64 131072 4 128 32768 1 >> ./results/cachesim_result_28365_$t.txt &
echo -n "$t 64 131072 4 256 32768 1 - 1352064 - " > ./results/cachesim_result_28366_$t.txt
./cachesim $t 64 131072 4 256 32768 1 >> ./results/cachesim_result_28366_$t.txt &
echo -n "$t 64 131072 4 512 32768 1 - 1350848 - " > ./results/cachesim_result_28367_$t.txt
./cachesim $t 64 131072 4 512 32768 1 >> ./results/cachesim_result_28367_$t.txt &
echo -n "$t 64 131072 4 1024 32768 1 - 1350240 - " > ./results/cachesim_result_28368_$t.txt
./cachesim $t 64 131072 4 1024 32768 1 >> ./results/cachesim_result_28368_$t.txt &
echo -n "$t 64 131072 4 64 32768 2 - 1359872 - " > ./results/cachesim_result_28369_$t.txt
./cachesim $t 64 131072 4 64 32768 2 >> ./results/cachesim_result_28369_$t.txt &
echo -n "$t 64 131072 4 128 32768 2 - 1354752 - " > ./results/cachesim_result_28370_$t.txt
./cachesim $t 64 131072 4 128 32768 2 >> ./results/cachesim_result_28370_$t.txt &
echo -n "$t 64 131072 4 256 32768 2 - 1352192 - " > ./results/cachesim_result_28371_$t.txt
./cachesim $t 64 131072 4 256 32768 2 >> ./results/cachesim_result_28371_$t.txt &
echo -n "$t 64 131072 4 512 32768 2 - 1350912 - " > ./results/cachesim_result_28372_$t.txt
./cachesim $t 64 131072 4 512 32768 2 >> ./results/cachesim_result_28372_$t.txt &
echo -n "$t 64 131072 4 1024 32768 2 - 1350272 - " > ./results/cachesim_result_28373_$t.txt
./cachesim $t 64 131072 4 1024 32768 2 >> ./results/cachesim_result_28373_$t.txt &
echo -n "$t 64 131072 4 64 32768 4 - 1360384 - " > ./results/cachesim_result_28374_$t.txt
./cachesim $t 64 131072 4 64 32768 4 >> ./results/cachesim_result_28374_$t.txt &
echo -n "$t 64 131072 4 128 32768 4 - 1355008 - " > ./results/cachesim_result_28375_$t.txt
./cachesim $t 64 131072 4 128 32768 4 >> ./results/cachesim_result_28375_$t.txt &
echo -n "$t 64 131072 4 256 32768 4 - 1352320 - " > ./results/cachesim_result_28376_$t.txt
./cachesim $t 64 131072 4 256 32768 4 >> ./results/cachesim_result_28376_$t.txt &
echo -n "$t 64 131072 4 512 32768 4 - 1350976 - " > ./results/cachesim_result_28377_$t.txt
./cachesim $t 64 131072 4 512 32768 4 >> ./results/cachesim_result_28377_$t.txt &
echo -n "$t 64 131072 4 1024 32768 4 - 1350304 - " > ./results/cachesim_result_28378_$t.txt
./cachesim $t 64 131072 4 1024 32768 4 >> ./results/cachesim_result_28378_$t.txt &
echo -n "$t 64 131072 4 64 32768 8 - 1360896 - " > ./results/cachesim_result_28379_$t.txt
./cachesim $t 64 131072 4 64 32768 8 >> ./results/cachesim_result_28379_$t.txt &
echo -n "$t 64 131072 4 128 32768 8 - 1355264 - " > ./results/cachesim_result_28380_$t.txt
./cachesim $t 64 131072 4 128 32768 8 >> ./results/cachesim_result_28380_$t.txt &
echo -n "$t 64 131072 4 256 32768 8 - 1352448 - " > ./results/cachesim_result_28381_$t.txt
./cachesim $t 64 131072 4 256 32768 8 >> ./results/cachesim_result_28381_$t.txt &
echo -n "$t 64 131072 4 512 32768 8 - 1351040 - " > ./results/cachesim_result_28382_$t.txt
./cachesim $t 64 131072 4 512 32768 8 >> ./results/cachesim_result_28382_$t.txt &
echo -n "$t 64 131072 4 1024 32768 8 - 1350336 - " > ./results/cachesim_result_28383_$t.txt
./cachesim $t 64 131072 4 1024 32768 8 >> ./results/cachesim_result_28383_$t.txt &
echo -n "$t 64 131072 4 64 32768 16 - 1361408 - " > ./results/cachesim_result_28384_$t.txt
./cachesim $t 64 131072 4 64 32768 16 >> ./results/cachesim_result_28384_$t.txt &
echo -n "$t 64 131072 4 128 32768 16 - 1355520 - " > ./results/cachesim_result_28385_$t.txt
./cachesim $t 64 131072 4 128 32768 16 >> ./results/cachesim_result_28385_$t.txt &
echo -n "$t 64 131072 4 256 32768 16 - 1352576 - " > ./results/cachesim_result_28386_$t.txt
./cachesim $t 64 131072 4 256 32768 16 >> ./results/cachesim_result_28386_$t.txt &
echo -n "$t 64 131072 4 512 32768 16 - 1351104 - " > ./results/cachesim_result_28387_$t.txt
./cachesim $t 64 131072 4 512 32768 16 >> ./results/cachesim_result_28387_$t.txt &
echo -n "$t 64 131072 4 1024 32768 16 - 1350368 - " > ./results/cachesim_result_28388_$t.txt
./cachesim $t 64 131072 4 1024 32768 16 >> ./results/cachesim_result_28388_$t.txt &
echo -n "$t 64 131072 4 64 32768 32 - 1361920 - " > ./results/cachesim_result_28389_$t.txt
./cachesim $t 64 131072 4 64 32768 32 >> ./results/cachesim_result_28389_$t.txt &
echo -n "$t 64 131072 4 128 32768 32 - 1355776 - " > ./results/cachesim_result_28390_$t.txt
./cachesim $t 64 131072 4 128 32768 32 >> ./results/cachesim_result_28390_$t.txt &
echo -n "$t 64 131072 4 256 32768 32 - 1352704 - " > ./results/cachesim_result_28391_$t.txt
./cachesim $t 64 131072 4 256 32768 32 >> ./results/cachesim_result_28391_$t.txt &
echo -n "$t 64 131072 4 512 32768 32 - 1351168 - " > ./results/cachesim_result_28392_$t.txt
./cachesim $t 64 131072 4 512 32768 32 >> ./results/cachesim_result_28392_$t.txt &
echo -n "$t 64 131072 4 1024 32768 32 - 1350400 - " > ./results/cachesim_result_28393_$t.txt
./cachesim $t 64 131072 4 1024 32768 32 >> ./results/cachesim_result_28393_$t.txt &
echo -n "$t 128 131072 4 128 4096 1 - 1101504 - " > ./results/cachesim_result_28394_$t.txt
./cachesim $t 128 131072 4 128 4096 1 >> ./results/cachesim_result_28394_$t.txt &
echo -n "$t 128 131072 4 256 4096 1 - 1101152 - " > ./results/cachesim_result_28395_$t.txt
./cachesim $t 128 131072 4 256 4096 1 >> ./results/cachesim_result_28395_$t.txt &
echo -n "$t 128 131072 4 512 4096 1 - 1100976 - " > ./results/cachesim_result_28396_$t.txt
./cachesim $t 128 131072 4 512 4096 1 >> ./results/cachesim_result_28396_$t.txt &
echo -n "$t 128 131072 4 1024 4096 1 - 1100888 - " > ./results/cachesim_result_28397_$t.txt
./cachesim $t 128 131072 4 1024 4096 1 >> ./results/cachesim_result_28397_$t.txt &
echo -n "$t 128 131072 4 128 4096 2 - 1101536 - " > ./results/cachesim_result_28398_$t.txt
./cachesim $t 128 131072 4 128 4096 2 >> ./results/cachesim_result_28398_$t.txt &
echo -n "$t 128 131072 4 256 4096 2 - 1101168 - " > ./results/cachesim_result_28399_$t.txt
./cachesim $t 128 131072 4 256 4096 2 >> ./results/cachesim_result_28399_$t.txt &
echo -n "$t 128 131072 4 512 4096 2 - 1100984 - " > ./results/cachesim_result_28400_$t.txt
./cachesim $t 128 131072 4 512 4096 2 >> ./results/cachesim_result_28400_$t.txt &
echo -n "$t 128 131072 4 1024 4096 2 - 1100892 - " > ./results/cachesim_result_28401_$t.txt
./cachesim $t 128 131072 4 1024 4096 2 >> ./results/cachesim_result_28401_$t.txt &
echo -n "$t 128 131072 4 128 4096 4 - 1101568 - " > ./results/cachesim_result_28402_$t.txt
./cachesim $t 128 131072 4 128 4096 4 >> ./results/cachesim_result_28402_$t.txt &
echo -n "$t 128 131072 4 256 4096 4 - 1101184 - " > ./results/cachesim_result_28403_$t.txt
./cachesim $t 128 131072 4 256 4096 4 >> ./results/cachesim_result_28403_$t.txt &
echo -n "$t 128 131072 4 512 4096 4 - 1100992 - " > ./results/cachesim_result_28404_$t.txt
./cachesim $t 128 131072 4 512 4096 4 >> ./results/cachesim_result_28404_$t.txt &
echo -n "$t 128 131072 4 1024 4096 4 - 1100896 - " > ./results/cachesim_result_28405_$t.txt
./cachesim $t 128 131072 4 1024 4096 4 >> ./results/cachesim_result_28405_$t.txt &
echo -n "$t 128 131072 4 128 4096 8 - 1101600 - " > ./results/cachesim_result_28406_$t.txt
./cachesim $t 128 131072 4 128 4096 8 >> ./results/cachesim_result_28406_$t.txt &
echo -n "$t 128 131072 4 256 4096 8 - 1101200 - " > ./results/cachesim_result_28407_$t.txt
./cachesim $t 128 131072 4 256 4096 8 >> ./results/cachesim_result_28407_$t.txt &
echo -n "$t 128 131072 4 512 4096 8 - 1101000 - " > ./results/cachesim_result_28408_$t.txt
./cachesim $t 128 131072 4 512 4096 8 >> ./results/cachesim_result_28408_$t.txt &
echo -n "$t 128 131072 4 128 4096 16 - 1101632 - " > ./results/cachesim_result_28409_$t.txt
./cachesim $t 128 131072 4 128 4096 16 >> ./results/cachesim_result_28409_$t.txt &
echo -n "$t 128 131072 4 256 4096 16 - 1101216 - " > ./results/cachesim_result_28410_$t.txt
./cachesim $t 128 131072 4 256 4096 16 >> ./results/cachesim_result_28410_$t.txt &
echo -n "$t 128 131072 4 128 4096 32 - 1101664 - " > ./results/cachesim_result_28411_$t.txt
./cachesim $t 128 131072 4 128 4096 32 >> ./results/cachesim_result_28411_$t.txt &
echo -n "$t 128 131072 4 128 8192 1 - 1134912 - " > ./results/cachesim_result_28412_$t.txt
./cachesim $t 128 131072 4 128 8192 1 >> ./results/cachesim_result_28412_$t.txt &
echo -n "$t 128 131072 4 256 8192 1 - 1134240 - " > ./results/cachesim_result_28413_$t.txt
./cachesim $t 128 131072 4 256 8192 1 >> ./results/cachesim_result_28413_$t.txt &
echo -n "$t 128 131072 4 512 8192 1 - 1133904 - " > ./results/cachesim_result_28414_$t.txt
./cachesim $t 128 131072 4 512 8192 1 >> ./results/cachesim_result_28414_$t.txt &
echo -n "$t 128 131072 4 1024 8192 1 - 1133736 - " > ./results/cachesim_result_28415_$t.txt
./cachesim $t 128 131072 4 1024 8192 1 >> ./results/cachesim_result_28415_$t.txt &
echo -n "$t 128 131072 4 128 8192 2 - 1134976 - " > ./results/cachesim_result_28416_$t.txt
./cachesim $t 128 131072 4 128 8192 2 >> ./results/cachesim_result_28416_$t.txt &
echo -n "$t 128 131072 4 256 8192 2 - 1134272 - " > ./results/cachesim_result_28417_$t.txt
./cachesim $t 128 131072 4 256 8192 2 >> ./results/cachesim_result_28417_$t.txt &
echo -n "$t 128 131072 4 512 8192 2 - 1133920 - " > ./results/cachesim_result_28418_$t.txt
./cachesim $t 128 131072 4 512 8192 2 >> ./results/cachesim_result_28418_$t.txt &
echo -n "$t 128 131072 4 1024 8192 2 - 1133744 - " > ./results/cachesim_result_28419_$t.txt
./cachesim $t 128 131072 4 1024 8192 2 >> ./results/cachesim_result_28419_$t.txt &
echo -n "$t 128 131072 4 128 8192 4 - 1135040 - " > ./results/cachesim_result_28420_$t.txt
./cachesim $t 128 131072 4 128 8192 4 >> ./results/cachesim_result_28420_$t.txt &
echo -n "$t 128 131072 4 256 8192 4 - 1134304 - " > ./results/cachesim_result_28421_$t.txt
./cachesim $t 128 131072 4 256 8192 4 >> ./results/cachesim_result_28421_$t.txt &
echo -n "$t 128 131072 4 512 8192 4 - 1133936 - " > ./results/cachesim_result_28422_$t.txt
./cachesim $t 128 131072 4 512 8192 4 >> ./results/cachesim_result_28422_$t.txt &
echo -n "$t 128 131072 4 1024 8192 4 - 1133752 - " > ./results/cachesim_result_28423_$t.txt
./cachesim $t 128 131072 4 1024 8192 4 >> ./results/cachesim_result_28423_$t.txt &
echo -n "$t 128 131072 4 128 8192 8 - 1135104 - " > ./results/cachesim_result_28424_$t.txt
./cachesim $t 128 131072 4 128 8192 8 >> ./results/cachesim_result_28424_$t.txt &
echo -n "$t 128 131072 4 256 8192 8 - 1134336 - " > ./results/cachesim_result_28425_$t.txt
./cachesim $t 128 131072 4 256 8192 8 >> ./results/cachesim_result_28425_$t.txt &
echo -n "$t 128 131072 4 512 8192 8 - 1133952 - " > ./results/cachesim_result_28426_$t.txt
./cachesim $t 128 131072 4 512 8192 8 >> ./results/cachesim_result_28426_$t.txt &
echo -n "$t 128 131072 4 1024 8192 8 - 1133760 - " > ./results/cachesim_result_28427_$t.txt
./cachesim $t 128 131072 4 1024 8192 8 >> ./results/cachesim_result_28427_$t.txt &
echo -n "$t 128 131072 4 128 8192 16 - 1135168 - " > ./results/cachesim_result_28428_$t.txt
./cachesim $t 128 131072 4 128 8192 16 >> ./results/cachesim_result_28428_$t.txt &
echo -n "$t 128 131072 4 256 8192 16 - 1134368 - " > ./results/cachesim_result_28429_$t.txt
./cachesim $t 128 131072 4 256 8192 16 >> ./results/cachesim_result_28429_$t.txt &
echo -n "$t 128 131072 4 512 8192 16 - 1133968 - " > ./results/cachesim_result_28430_$t.txt
./cachesim $t 128 131072 4 512 8192 16 >> ./results/cachesim_result_28430_$t.txt &
echo -n "$t 128 131072 4 128 8192 32 - 1135232 - " > ./results/cachesim_result_28431_$t.txt
./cachesim $t 128 131072 4 128 8192 32 >> ./results/cachesim_result_28431_$t.txt &
echo -n "$t 128 131072 4 256 8192 32 - 1134400 - " > ./results/cachesim_result_28432_$t.txt
./cachesim $t 128 131072 4 256 8192 32 >> ./results/cachesim_result_28432_$t.txt &
echo -n "$t 128 131072 4 128 16384 1 - 1201664 - " > ./results/cachesim_result_28433_$t.txt
./cachesim $t 128 131072 4 128 16384 1 >> ./results/cachesim_result_28433_$t.txt &
echo -n "$t 128 131072 4 256 16384 1 - 1200384 - " > ./results/cachesim_result_28434_$t.txt
./cachesim $t 128 131072 4 256 16384 1 >> ./results/cachesim_result_28434_$t.txt &
echo -n "$t 128 131072 4 512 16384 1 - 1199744 - " > ./results/cachesim_result_28435_$t.txt
./cachesim $t 128 131072 4 512 16384 1 >> ./results/cachesim_result_28435_$t.txt &
echo -n "$t 128 131072 4 1024 16384 1 - 1199424 - " > ./results/cachesim_result_28436_$t.txt
./cachesim $t 128 131072 4 1024 16384 1 >> ./results/cachesim_result_28436_$t.txt &
echo -n "$t 128 131072 4 128 16384 2 - 1201792 - " > ./results/cachesim_result_28437_$t.txt
./cachesim $t 128 131072 4 128 16384 2 >> ./results/cachesim_result_28437_$t.txt &
echo -n "$t 128 131072 4 256 16384 2 - 1200448 - " > ./results/cachesim_result_28438_$t.txt
./cachesim $t 128 131072 4 256 16384 2 >> ./results/cachesim_result_28438_$t.txt &
echo -n "$t 128 131072 4 512 16384 2 - 1199776 - " > ./results/cachesim_result_28439_$t.txt
./cachesim $t 128 131072 4 512 16384 2 >> ./results/cachesim_result_28439_$t.txt &
echo -n "$t 128 131072 4 1024 16384 2 - 1199440 - " > ./results/cachesim_result_28440_$t.txt
./cachesim $t 128 131072 4 1024 16384 2 >> ./results/cachesim_result_28440_$t.txt &
echo -n "$t 128 131072 4 128 16384 4 - 1201920 - " > ./results/cachesim_result_28441_$t.txt
./cachesim $t 128 131072 4 128 16384 4 >> ./results/cachesim_result_28441_$t.txt &
echo -n "$t 128 131072 4 256 16384 4 - 1200512 - " > ./results/cachesim_result_28442_$t.txt
./cachesim $t 128 131072 4 256 16384 4 >> ./results/cachesim_result_28442_$t.txt &
echo -n "$t 128 131072 4 512 16384 4 - 1199808 - " > ./results/cachesim_result_28443_$t.txt
./cachesim $t 128 131072 4 512 16384 4 >> ./results/cachesim_result_28443_$t.txt &
echo -n "$t 128 131072 4 1024 16384 4 - 1199456 - " > ./results/cachesim_result_28444_$t.txt
./cachesim $t 128 131072 4 1024 16384 4 >> ./results/cachesim_result_28444_$t.txt &
echo -n "$t 128 131072 4 128 16384 8 - 1202048 - " > ./results/cachesim_result_28445_$t.txt
./cachesim $t 128 131072 4 128 16384 8 >> ./results/cachesim_result_28445_$t.txt &
echo -n "$t 128 131072 4 256 16384 8 - 1200576 - " > ./results/cachesim_result_28446_$t.txt
./cachesim $t 128 131072 4 256 16384 8 >> ./results/cachesim_result_28446_$t.txt &
echo -n "$t 128 131072 4 512 16384 8 - 1199840 - " > ./results/cachesim_result_28447_$t.txt
./cachesim $t 128 131072 4 512 16384 8 >> ./results/cachesim_result_28447_$t.txt &
echo -n "$t 128 131072 4 1024 16384 8 - 1199472 - " > ./results/cachesim_result_28448_$t.txt
./cachesim $t 128 131072 4 1024 16384 8 >> ./results/cachesim_result_28448_$t.txt &
echo -n "$t 128 131072 4 128 16384 16 - 1202176 - " > ./results/cachesim_result_28449_$t.txt
./cachesim $t 128 131072 4 128 16384 16 >> ./results/cachesim_result_28449_$t.txt &
echo -n "$t 128 131072 4 256 16384 16 - 1200640 - " > ./results/cachesim_result_28450_$t.txt
./cachesim $t 128 131072 4 256 16384 16 >> ./results/cachesim_result_28450_$t.txt &
echo -n "$t 128 131072 4 512 16384 16 - 1199872 - " > ./results/cachesim_result_28451_$t.txt
./cachesim $t 128 131072 4 512 16384 16 >> ./results/cachesim_result_28451_$t.txt &
echo -n "$t 128 131072 4 1024 16384 16 - 1199488 - " > ./results/cachesim_result_28452_$t.txt
./cachesim $t 128 131072 4 1024 16384 16 >> ./results/cachesim_result_28452_$t.txt &
echo -n "$t 128 131072 4 128 16384 32 - 1202304 - " > ./results/cachesim_result_28453_$t.txt
./cachesim $t 128 131072 4 128 16384 32 >> ./results/cachesim_result_28453_$t.txt &
echo -n "$t 128 131072 4 256 16384 32 - 1200704 - " > ./results/cachesim_result_28454_$t.txt
./cachesim $t 128 131072 4 256 16384 32 >> ./results/cachesim_result_28454_$t.txt &
echo -n "$t 128 131072 4 512 16384 32 - 1199904 - " > ./results/cachesim_result_28455_$t.txt
./cachesim $t 128 131072 4 512 16384 32 >> ./results/cachesim_result_28455_$t.txt &
echo -n "$t 128 131072 4 128 32768 1 - 1335040 - " > ./results/cachesim_result_28456_$t.txt
./cachesim $t 128 131072 4 128 32768 1 >> ./results/cachesim_result_28456_$t.txt &
echo -n "$t 128 131072 4 256 32768 1 - 1332608 - " > ./results/cachesim_result_28457_$t.txt
./cachesim $t 128 131072 4 256 32768 1 >> ./results/cachesim_result_28457_$t.txt &
echo -n "$t 128 131072 4 512 32768 1 - 1331392 - " > ./results/cachesim_result_28458_$t.txt
./cachesim $t 128 131072 4 512 32768 1 >> ./results/cachesim_result_28458_$t.txt &
echo -n "$t 128 131072 4 1024 32768 1 - 1330784 - " > ./results/cachesim_result_28459_$t.txt
./cachesim $t 128 131072 4 1024 32768 1 >> ./results/cachesim_result_28459_$t.txt &
echo -n "$t 128 131072 4 128 32768 2 - 1335296 - " > ./results/cachesim_result_28460_$t.txt
./cachesim $t 128 131072 4 128 32768 2 >> ./results/cachesim_result_28460_$t.txt &
echo -n "$t 128 131072 4 256 32768 2 - 1332736 - " > ./results/cachesim_result_28461_$t.txt
./cachesim $t 128 131072 4 256 32768 2 >> ./results/cachesim_result_28461_$t.txt &
echo -n "$t 128 131072 4 512 32768 2 - 1331456 - " > ./results/cachesim_result_28462_$t.txt
./cachesim $t 128 131072 4 512 32768 2 >> ./results/cachesim_result_28462_$t.txt &
echo -n "$t 128 131072 4 1024 32768 2 - 1330816 - " > ./results/cachesim_result_28463_$t.txt
./cachesim $t 128 131072 4 1024 32768 2 >> ./results/cachesim_result_28463_$t.txt &
echo -n "$t 128 131072 4 128 32768 4 - 1335552 - " > ./results/cachesim_result_28464_$t.txt
./cachesim $t 128 131072 4 128 32768 4 >> ./results/cachesim_result_28464_$t.txt &
echo -n "$t 128 131072 4 256 32768 4 - 1332864 - " > ./results/cachesim_result_28465_$t.txt
./cachesim $t 128 131072 4 256 32768 4 >> ./results/cachesim_result_28465_$t.txt &
echo -n "$t 128 131072 4 512 32768 4 - 1331520 - " > ./results/cachesim_result_28466_$t.txt
./cachesim $t 128 131072 4 512 32768 4 >> ./results/cachesim_result_28466_$t.txt &
echo -n "$t 128 131072 4 1024 32768 4 - 1330848 - " > ./results/cachesim_result_28467_$t.txt
./cachesim $t 128 131072 4 1024 32768 4 >> ./results/cachesim_result_28467_$t.txt &
echo -n "$t 128 131072 4 128 32768 8 - 1335808 - " > ./results/cachesim_result_28468_$t.txt
./cachesim $t 128 131072 4 128 32768 8 >> ./results/cachesim_result_28468_$t.txt &
echo -n "$t 128 131072 4 256 32768 8 - 1332992 - " > ./results/cachesim_result_28469_$t.txt
./cachesim $t 128 131072 4 256 32768 8 >> ./results/cachesim_result_28469_$t.txt &
echo -n "$t 128 131072 4 512 32768 8 - 1331584 - " > ./results/cachesim_result_28470_$t.txt
./cachesim $t 128 131072 4 512 32768 8 >> ./results/cachesim_result_28470_$t.txt &
echo -n "$t 128 131072 4 1024 32768 8 - 1330880 - " > ./results/cachesim_result_28471_$t.txt
./cachesim $t 128 131072 4 1024 32768 8 >> ./results/cachesim_result_28471_$t.txt &
echo -n "$t 128 131072 4 128 32768 16 - 1336064 - " > ./results/cachesim_result_28472_$t.txt
./cachesim $t 128 131072 4 128 32768 16 >> ./results/cachesim_result_28472_$t.txt &
echo -n "$t 128 131072 4 256 32768 16 - 1333120 - " > ./results/cachesim_result_28473_$t.txt
./cachesim $t 128 131072 4 256 32768 16 >> ./results/cachesim_result_28473_$t.txt &
echo -n "$t 128 131072 4 512 32768 16 - 1331648 - " > ./results/cachesim_result_28474_$t.txt
./cachesim $t 128 131072 4 512 32768 16 >> ./results/cachesim_result_28474_$t.txt &
echo -n "$t 128 131072 4 1024 32768 16 - 1330912 - " > ./results/cachesim_result_28475_$t.txt
./cachesim $t 128 131072 4 1024 32768 16 >> ./results/cachesim_result_28475_$t.txt &
echo -n "$t 128 131072 4 128 32768 32 - 1336320 - " > ./results/cachesim_result_28476_$t.txt
./cachesim $t 128 131072 4 128 32768 32 >> ./results/cachesim_result_28476_$t.txt &
echo -n "$t 128 131072 4 256 32768 32 - 1333248 - " > ./results/cachesim_result_28477_$t.txt
./cachesim $t 128 131072 4 256 32768 32 >> ./results/cachesim_result_28477_$t.txt &
echo -n "$t 128 131072 4 512 32768 32 - 1331712 - " > ./results/cachesim_result_28478_$t.txt
./cachesim $t 128 131072 4 512 32768 32 >> ./results/cachesim_result_28478_$t.txt &
echo -n "$t 128 131072 4 1024 32768 32 - 1330944 - " > ./results/cachesim_result_28479_$t.txt
./cachesim $t 128 131072 4 1024 32768 32 >> ./results/cachesim_result_28479_$t.txt &
echo -n "$t 256 131072 4 256 4096 1 - 1091424 - " > ./results/cachesim_result_28480_$t.txt
./cachesim $t 256 131072 4 256 4096 1 >> ./results/cachesim_result_28480_$t.txt &
echo -n "$t 256 131072 4 512 4096 1 - 1091248 - " > ./results/cachesim_result_28481_$t.txt
./cachesim $t 256 131072 4 512 4096 1 >> ./results/cachesim_result_28481_$t.txt &
echo -n "$t 256 131072 4 1024 4096 1 - 1091160 - " > ./results/cachesim_result_28482_$t.txt
./cachesim $t 256 131072 4 1024 4096 1 >> ./results/cachesim_result_28482_$t.txt &
echo -n "$t 256 131072 4 256 4096 2 - 1091440 - " > ./results/cachesim_result_28483_$t.txt
./cachesim $t 256 131072 4 256 4096 2 >> ./results/cachesim_result_28483_$t.txt &
echo -n "$t 256 131072 4 512 4096 2 - 1091256 - " > ./results/cachesim_result_28484_$t.txt
./cachesim $t 256 131072 4 512 4096 2 >> ./results/cachesim_result_28484_$t.txt &
echo -n "$t 256 131072 4 1024 4096 2 - 1091164 - " > ./results/cachesim_result_28485_$t.txt
./cachesim $t 256 131072 4 1024 4096 2 >> ./results/cachesim_result_28485_$t.txt &
echo -n "$t 256 131072 4 256 4096 4 - 1091456 - " > ./results/cachesim_result_28486_$t.txt
./cachesim $t 256 131072 4 256 4096 4 >> ./results/cachesim_result_28486_$t.txt &
echo -n "$t 256 131072 4 512 4096 4 - 1091264 - " > ./results/cachesim_result_28487_$t.txt
./cachesim $t 256 131072 4 512 4096 4 >> ./results/cachesim_result_28487_$t.txt &
echo -n "$t 256 131072 4 1024 4096 4 - 1091168 - " > ./results/cachesim_result_28488_$t.txt
./cachesim $t 256 131072 4 1024 4096 4 >> ./results/cachesim_result_28488_$t.txt &
echo -n "$t 256 131072 4 256 4096 8 - 1091472 - " > ./results/cachesim_result_28489_$t.txt
./cachesim $t 256 131072 4 256 4096 8 >> ./results/cachesim_result_28489_$t.txt &
echo -n "$t 256 131072 4 512 4096 8 - 1091272 - " > ./results/cachesim_result_28490_$t.txt
./cachesim $t 256 131072 4 512 4096 8 >> ./results/cachesim_result_28490_$t.txt &
echo -n "$t 256 131072 4 256 4096 16 - 1091488 - " > ./results/cachesim_result_28491_$t.txt
./cachesim $t 256 131072 4 256 4096 16 >> ./results/cachesim_result_28491_$t.txt &
echo -n "$t 256 131072 4 256 8192 1 - 1124512 - " > ./results/cachesim_result_28492_$t.txt
./cachesim $t 256 131072 4 256 8192 1 >> ./results/cachesim_result_28492_$t.txt &
echo -n "$t 256 131072 4 512 8192 1 - 1124176 - " > ./results/cachesim_result_28493_$t.txt
./cachesim $t 256 131072 4 512 8192 1 >> ./results/cachesim_result_28493_$t.txt &
echo -n "$t 256 131072 4 1024 8192 1 - 1124008 - " > ./results/cachesim_result_28494_$t.txt
./cachesim $t 256 131072 4 1024 8192 1 >> ./results/cachesim_result_28494_$t.txt &
echo -n "$t 256 131072 4 256 8192 2 - 1124544 - " > ./results/cachesim_result_28495_$t.txt
./cachesim $t 256 131072 4 256 8192 2 >> ./results/cachesim_result_28495_$t.txt &
echo -n "$t 256 131072 4 512 8192 2 - 1124192 - " > ./results/cachesim_result_28496_$t.txt
./cachesim $t 256 131072 4 512 8192 2 >> ./results/cachesim_result_28496_$t.txt &
echo -n "$t 256 131072 4 1024 8192 2 - 1124016 - " > ./results/cachesim_result_28497_$t.txt
./cachesim $t 256 131072 4 1024 8192 2 >> ./results/cachesim_result_28497_$t.txt &
echo -n "$t 256 131072 4 256 8192 4 - 1124576 - " > ./results/cachesim_result_28498_$t.txt
./cachesim $t 256 131072 4 256 8192 4 >> ./results/cachesim_result_28498_$t.txt &
echo -n "$t 256 131072 4 512 8192 4 - 1124208 - " > ./results/cachesim_result_28499_$t.txt
./cachesim $t 256 131072 4 512 8192 4 >> ./results/cachesim_result_28499_$t.txt &
echo -n "$t 256 131072 4 1024 8192 4 - 1124024 - " > ./results/cachesim_result_28500_$t.txt
./cachesim $t 256 131072 4 1024 8192 4 >> ./results/cachesim_result_28500_$t.txt &
echo -n "$t 256 131072 4 256 8192 8 - 1124608 - " > ./results/cachesim_result_28501_$t.txt
./cachesim $t 256 131072 4 256 8192 8 >> ./results/cachesim_result_28501_$t.txt &
echo -n "$t 256 131072 4 512 8192 8 - 1124224 - " > ./results/cachesim_result_28502_$t.txt
./cachesim $t 256 131072 4 512 8192 8 >> ./results/cachesim_result_28502_$t.txt &
echo -n "$t 256 131072 4 1024 8192 8 - 1124032 - " > ./results/cachesim_result_28503_$t.txt
./cachesim $t 256 131072 4 1024 8192 8 >> ./results/cachesim_result_28503_$t.txt &
echo -n "$t 256 131072 4 256 8192 16 - 1124640 - " > ./results/cachesim_result_28504_$t.txt
./cachesim $t 256 131072 4 256 8192 16 >> ./results/cachesim_result_28504_$t.txt &
echo -n "$t 256 131072 4 512 8192 16 - 1124240 - " > ./results/cachesim_result_28505_$t.txt
./cachesim $t 256 131072 4 512 8192 16 >> ./results/cachesim_result_28505_$t.txt &
echo -n "$t 256 131072 4 256 8192 32 - 1124672 - " > ./results/cachesim_result_28506_$t.txt
./cachesim $t 256 131072 4 256 8192 32 >> ./results/cachesim_result_28506_$t.txt &
echo -n "$t 256 131072 4 256 16384 1 - 1190656 - " > ./results/cachesim_result_28507_$t.txt
./cachesim $t 256 131072 4 256 16384 1 >> ./results/cachesim_result_28507_$t.txt &
echo -n "$t 256 131072 4 512 16384 1 - 1190016 - " > ./results/cachesim_result_28508_$t.txt
./cachesim $t 256 131072 4 512 16384 1 >> ./results/cachesim_result_28508_$t.txt &
echo -n "$t 256 131072 4 1024 16384 1 - 1189696 - " > ./results/cachesim_result_28509_$t.txt
./cachesim $t 256 131072 4 1024 16384 1 >> ./results/cachesim_result_28509_$t.txt &
echo -n "$t 256 131072 4 256 16384 2 - 1190720 - " > ./results/cachesim_result_28510_$t.txt
./cachesim $t 256 131072 4 256 16384 2 >> ./results/cachesim_result_28510_$t.txt &
echo -n "$t 256 131072 4 512 16384 2 - 1190048 - " > ./results/cachesim_result_28511_$t.txt
./cachesim $t 256 131072 4 512 16384 2 >> ./results/cachesim_result_28511_$t.txt &
echo -n "$t 256 131072 4 1024 16384 2 - 1189712 - " > ./results/cachesim_result_28512_$t.txt
./cachesim $t 256 131072 4 1024 16384 2 >> ./results/cachesim_result_28512_$t.txt &
echo -n "$t 256 131072 4 256 16384 4 - 1190784 - " > ./results/cachesim_result_28513_$t.txt
./cachesim $t 256 131072 4 256 16384 4 >> ./results/cachesim_result_28513_$t.txt &
echo -n "$t 256 131072 4 512 16384 4 - 1190080 - " > ./results/cachesim_result_28514_$t.txt
./cachesim $t 256 131072 4 512 16384 4 >> ./results/cachesim_result_28514_$t.txt &
echo -n "$t 256 131072 4 1024 16384 4 - 1189728 - " > ./results/cachesim_result_28515_$t.txt
./cachesim $t 256 131072 4 1024 16384 4 >> ./results/cachesim_result_28515_$t.txt &
echo -n "$t 256 131072 4 256 16384 8 - 1190848 - " > ./results/cachesim_result_28516_$t.txt
./cachesim $t 256 131072 4 256 16384 8 >> ./results/cachesim_result_28516_$t.txt &
echo -n "$t 256 131072 4 512 16384 8 - 1190112 - " > ./results/cachesim_result_28517_$t.txt
./cachesim $t 256 131072 4 512 16384 8 >> ./results/cachesim_result_28517_$t.txt &
echo -n "$t 256 131072 4 1024 16384 8 - 1189744 - " > ./results/cachesim_result_28518_$t.txt
./cachesim $t 256 131072 4 1024 16384 8 >> ./results/cachesim_result_28518_$t.txt &
echo -n "$t 256 131072 4 256 16384 16 - 1190912 - " > ./results/cachesim_result_28519_$t.txt
./cachesim $t 256 131072 4 256 16384 16 >> ./results/cachesim_result_28519_$t.txt &
echo -n "$t 256 131072 4 512 16384 16 - 1190144 - " > ./results/cachesim_result_28520_$t.txt
./cachesim $t 256 131072 4 512 16384 16 >> ./results/cachesim_result_28520_$t.txt &
echo -n "$t 256 131072 4 1024 16384 16 - 1189760 - " > ./results/cachesim_result_28521_$t.txt
./cachesim $t 256 131072 4 1024 16384 16 >> ./results/cachesim_result_28521_$t.txt &
echo -n "$t 256 131072 4 256 16384 32 - 1190976 - " > ./results/cachesim_result_28522_$t.txt
./cachesim $t 256 131072 4 256 16384 32 >> ./results/cachesim_result_28522_$t.txt &
echo -n "$t 256 131072 4 512 16384 32 - 1190176 - " > ./results/cachesim_result_28523_$t.txt
./cachesim $t 256 131072 4 512 16384 32 >> ./results/cachesim_result_28523_$t.txt &
echo -n "$t 256 131072 4 256 32768 1 - 1322880 - " > ./results/cachesim_result_28524_$t.txt
./cachesim $t 256 131072 4 256 32768 1 >> ./results/cachesim_result_28524_$t.txt &
echo -n "$t 256 131072 4 512 32768 1 - 1321664 - " > ./results/cachesim_result_28525_$t.txt
./cachesim $t 256 131072 4 512 32768 1 >> ./results/cachesim_result_28525_$t.txt &
echo -n "$t 256 131072 4 1024 32768 1 - 1321056 - " > ./results/cachesim_result_28526_$t.txt
./cachesim $t 256 131072 4 1024 32768 1 >> ./results/cachesim_result_28526_$t.txt &
echo -n "$t 256 131072 4 256 32768 2 - 1323008 - " > ./results/cachesim_result_28527_$t.txt
./cachesim $t 256 131072 4 256 32768 2 >> ./results/cachesim_result_28527_$t.txt &
echo -n "$t 256 131072 4 512 32768 2 - 1321728 - " > ./results/cachesim_result_28528_$t.txt
./cachesim $t 256 131072 4 512 32768 2 >> ./results/cachesim_result_28528_$t.txt &
echo -n "$t 256 131072 4 1024 32768 2 - 1321088 - " > ./results/cachesim_result_28529_$t.txt
./cachesim $t 256 131072 4 1024 32768 2 >> ./results/cachesim_result_28529_$t.txt &
echo -n "$t 256 131072 4 256 32768 4 - 1323136 - " > ./results/cachesim_result_28530_$t.txt
./cachesim $t 256 131072 4 256 32768 4 >> ./results/cachesim_result_28530_$t.txt &
echo -n "$t 256 131072 4 512 32768 4 - 1321792 - " > ./results/cachesim_result_28531_$t.txt
./cachesim $t 256 131072 4 512 32768 4 >> ./results/cachesim_result_28531_$t.txt &
echo -n "$t 256 131072 4 1024 32768 4 - 1321120 - " > ./results/cachesim_result_28532_$t.txt
./cachesim $t 256 131072 4 1024 32768 4 >> ./results/cachesim_result_28532_$t.txt &
echo -n "$t 256 131072 4 256 32768 8 - 1323264 - " > ./results/cachesim_result_28533_$t.txt
./cachesim $t 256 131072 4 256 32768 8 >> ./results/cachesim_result_28533_$t.txt &
echo -n "$t 256 131072 4 512 32768 8 - 1321856 - " > ./results/cachesim_result_28534_$t.txt
./cachesim $t 256 131072 4 512 32768 8 >> ./results/cachesim_result_28534_$t.txt &
echo -n "$t 256 131072 4 1024 32768 8 - 1321152 - " > ./results/cachesim_result_28535_$t.txt
./cachesim $t 256 131072 4 1024 32768 8 >> ./results/cachesim_result_28535_$t.txt &
echo -n "$t 256 131072 4 256 32768 16 - 1323392 - " > ./results/cachesim_result_28536_$t.txt
./cachesim $t 256 131072 4 256 32768 16 >> ./results/cachesim_result_28536_$t.txt &
echo -n "$t 256 131072 4 512 32768 16 - 1321920 - " > ./results/cachesim_result_28537_$t.txt
./cachesim $t 256 131072 4 512 32768 16 >> ./results/cachesim_result_28537_$t.txt &
echo -n "$t 256 131072 4 1024 32768 16 - 1321184 - " > ./results/cachesim_result_28538_$t.txt
./cachesim $t 256 131072 4 1024 32768 16 >> ./results/cachesim_result_28538_$t.txt &
echo -n "$t 256 131072 4 256 32768 32 - 1323520 - " > ./results/cachesim_result_28539_$t.txt
./cachesim $t 256 131072 4 256 32768 32 >> ./results/cachesim_result_28539_$t.txt &
echo -n "$t 256 131072 4 512 32768 32 - 1321984 - " > ./results/cachesim_result_28540_$t.txt
./cachesim $t 256 131072 4 512 32768 32 >> ./results/cachesim_result_28540_$t.txt &
echo -n "$t 256 131072 4 1024 32768 32 - 1321216 - " > ./results/cachesim_result_28541_$t.txt
./cachesim $t 256 131072 4 1024 32768 32 >> ./results/cachesim_result_28541_$t.txt &
echo -n "$t 512 131072 4 512 4096 1 - 1086384 - " > ./results/cachesim_result_28542_$t.txt
./cachesim $t 512 131072 4 512 4096 1 >> ./results/cachesim_result_28542_$t.txt &
echo -n "$t 512 131072 4 1024 4096 1 - 1086296 - " > ./results/cachesim_result_28543_$t.txt
./cachesim $t 512 131072 4 1024 4096 1 >> ./results/cachesim_result_28543_$t.txt &
echo -n "$t 512 131072 4 512 4096 2 - 1086392 - " > ./results/cachesim_result_28544_$t.txt
./cachesim $t 512 131072 4 512 4096 2 >> ./results/cachesim_result_28544_$t.txt &
echo -n "$t 512 131072 4 1024 4096 2 - 1086300 - " > ./results/cachesim_result_28545_$t.txt
./cachesim $t 512 131072 4 1024 4096 2 >> ./results/cachesim_result_28545_$t.txt &
echo -n "$t 512 131072 4 512 4096 4 - 1086400 - " > ./results/cachesim_result_28546_$t.txt
./cachesim $t 512 131072 4 512 4096 4 >> ./results/cachesim_result_28546_$t.txt &
echo -n "$t 512 131072 4 1024 4096 4 - 1086304 - " > ./results/cachesim_result_28547_$t.txt
./cachesim $t 512 131072 4 1024 4096 4 >> ./results/cachesim_result_28547_$t.txt &
echo -n "$t 512 131072 4 512 4096 8 - 1086408 - " > ./results/cachesim_result_28548_$t.txt
./cachesim $t 512 131072 4 512 4096 8 >> ./results/cachesim_result_28548_$t.txt &
echo -n "$t 512 131072 4 512 8192 1 - 1119312 - " > ./results/cachesim_result_28549_$t.txt
./cachesim $t 512 131072 4 512 8192 1 >> ./results/cachesim_result_28549_$t.txt &
echo -n "$t 512 131072 4 1024 8192 1 - 1119144 - " > ./results/cachesim_result_28550_$t.txt
./cachesim $t 512 131072 4 1024 8192 1 >> ./results/cachesim_result_28550_$t.txt &
echo -n "$t 512 131072 4 512 8192 2 - 1119328 - " > ./results/cachesim_result_28551_$t.txt
./cachesim $t 512 131072 4 512 8192 2 >> ./results/cachesim_result_28551_$t.txt &
echo -n "$t 512 131072 4 1024 8192 2 - 1119152 - " > ./results/cachesim_result_28552_$t.txt
./cachesim $t 512 131072 4 1024 8192 2 >> ./results/cachesim_result_28552_$t.txt &
echo -n "$t 512 131072 4 512 8192 4 - 1119344 - " > ./results/cachesim_result_28553_$t.txt
./cachesim $t 512 131072 4 512 8192 4 >> ./results/cachesim_result_28553_$t.txt &
echo -n "$t 512 131072 4 1024 8192 4 - 1119160 - " > ./results/cachesim_result_28554_$t.txt
./cachesim $t 512 131072 4 1024 8192 4 >> ./results/cachesim_result_28554_$t.txt &
echo -n "$t 512 131072 4 512 8192 8 - 1119360 - " > ./results/cachesim_result_28555_$t.txt
./cachesim $t 512 131072 4 512 8192 8 >> ./results/cachesim_result_28555_$t.txt &
echo -n "$t 512 131072 4 1024 8192 8 - 1119168 - " > ./results/cachesim_result_28556_$t.txt
./cachesim $t 512 131072 4 1024 8192 8 >> ./results/cachesim_result_28556_$t.txt &
echo -n "$t 512 131072 4 512 8192 16 - 1119376 - " > ./results/cachesim_result_28557_$t.txt
./cachesim $t 512 131072 4 512 8192 16 >> ./results/cachesim_result_28557_$t.txt &
echo -n "$t 512 131072 4 512 16384 1 - 1185152 - " > ./results/cachesim_result_28558_$t.txt
./cachesim $t 512 131072 4 512 16384 1 >> ./results/cachesim_result_28558_$t.txt &
echo -n "$t 512 131072 4 1024 16384 1 - 1184832 - " > ./results/cachesim_result_28559_$t.txt
./cachesim $t 512 131072 4 1024 16384 1 >> ./results/cachesim_result_28559_$t.txt &
echo -n "$t 512 131072 4 512 16384 2 - 1185184 - " > ./results/cachesim_result_28560_$t.txt
./cachesim $t 512 131072 4 512 16384 2 >> ./results/cachesim_result_28560_$t.txt &
echo -n "$t 512 131072 4 1024 16384 2 - 1184848 - " > ./results/cachesim_result_28561_$t.txt
./cachesim $t 512 131072 4 1024 16384 2 >> ./results/cachesim_result_28561_$t.txt &
echo -n "$t 512 131072 4 512 16384 4 - 1185216 - " > ./results/cachesim_result_28562_$t.txt
./cachesim $t 512 131072 4 512 16384 4 >> ./results/cachesim_result_28562_$t.txt &
echo -n "$t 512 131072 4 1024 16384 4 - 1184864 - " > ./results/cachesim_result_28563_$t.txt
./cachesim $t 512 131072 4 1024 16384 4 >> ./results/cachesim_result_28563_$t.txt &
echo -n "$t 512 131072 4 512 16384 8 - 1185248 - " > ./results/cachesim_result_28564_$t.txt
./cachesim $t 512 131072 4 512 16384 8 >> ./results/cachesim_result_28564_$t.txt &
echo -n "$t 512 131072 4 1024 16384 8 - 1184880 - " > ./results/cachesim_result_28565_$t.txt
./cachesim $t 512 131072 4 1024 16384 8 >> ./results/cachesim_result_28565_$t.txt &
echo -n "$t 512 131072 4 512 16384 16 - 1185280 - " > ./results/cachesim_result_28566_$t.txt
./cachesim $t 512 131072 4 512 16384 16 >> ./results/cachesim_result_28566_$t.txt &
echo -n "$t 512 131072 4 1024 16384 16 - 1184896 - " > ./results/cachesim_result_28567_$t.txt
./cachesim $t 512 131072 4 1024 16384 16 >> ./results/cachesim_result_28567_$t.txt &
echo -n "$t 512 131072 4 512 16384 32 - 1185312 - " > ./results/cachesim_result_28568_$t.txt
./cachesim $t 512 131072 4 512 16384 32 >> ./results/cachesim_result_28568_$t.txt &
echo -n "$t 512 131072 4 512 32768 1 - 1316800 - " > ./results/cachesim_result_28569_$t.txt
./cachesim $t 512 131072 4 512 32768 1 >> ./results/cachesim_result_28569_$t.txt &
echo -n "$t 512 131072 4 1024 32768 1 - 1316192 - " > ./results/cachesim_result_28570_$t.txt
./cachesim $t 512 131072 4 1024 32768 1 >> ./results/cachesim_result_28570_$t.txt &
echo -n "$t 512 131072 4 512 32768 2 - 1316864 - " > ./results/cachesim_result_28571_$t.txt
./cachesim $t 512 131072 4 512 32768 2 >> ./results/cachesim_result_28571_$t.txt &
echo -n "$t 512 131072 4 1024 32768 2 - 1316224 - " > ./results/cachesim_result_28572_$t.txt
./cachesim $t 512 131072 4 1024 32768 2 >> ./results/cachesim_result_28572_$t.txt &
echo -n "$t 512 131072 4 512 32768 4 - 1316928 - " > ./results/cachesim_result_28573_$t.txt
./cachesim $t 512 131072 4 512 32768 4 >> ./results/cachesim_result_28573_$t.txt &
echo -n "$t 512 131072 4 1024 32768 4 - 1316256 - " > ./results/cachesim_result_28574_$t.txt
./cachesim $t 512 131072 4 1024 32768 4 >> ./results/cachesim_result_28574_$t.txt &
echo -n "$t 512 131072 4 512 32768 8 - 1316992 - " > ./results/cachesim_result_28575_$t.txt
./cachesim $t 512 131072 4 512 32768 8 >> ./results/cachesim_result_28575_$t.txt &
echo -n "$t 512 131072 4 1024 32768 8 - 1316288 - " > ./results/cachesim_result_28576_$t.txt
./cachesim $t 512 131072 4 1024 32768 8 >> ./results/cachesim_result_28576_$t.txt &
echo -n "$t 512 131072 4 512 32768 16 - 1317056 - " > ./results/cachesim_result_28577_$t.txt
./cachesim $t 512 131072 4 512 32768 16 >> ./results/cachesim_result_28577_$t.txt &
echo -n "$t 512 131072 4 1024 32768 16 - 1316320 - " > ./results/cachesim_result_28578_$t.txt
./cachesim $t 512 131072 4 1024 32768 16 >> ./results/cachesim_result_28578_$t.txt &
echo -n "$t 512 131072 4 512 32768 32 - 1317120 - " > ./results/cachesim_result_28579_$t.txt
./cachesim $t 512 131072 4 512 32768 32 >> ./results/cachesim_result_28579_$t.txt &
echo -n "$t 512 131072 4 1024 32768 32 - 1316352 - " > ./results/cachesim_result_28580_$t.txt
./cachesim $t 512 131072 4 1024 32768 32 >> ./results/cachesim_result_28580_$t.txt &
echo -n "$t 1024 131072 4 1024 4096 1 - 1083864 - " > ./results/cachesim_result_28581_$t.txt
./cachesim $t 1024 131072 4 1024 4096 1 >> ./results/cachesim_result_28581_$t.txt &
echo -n "$t 1024 131072 4 1024 4096 2 - 1083868 - " > ./results/cachesim_result_28582_$t.txt
./cachesim $t 1024 131072 4 1024 4096 2 >> ./results/cachesim_result_28582_$t.txt &
echo -n "$t 1024 131072 4 1024 4096 4 - 1083872 - " > ./results/cachesim_result_28583_$t.txt
./cachesim $t 1024 131072 4 1024 4096 4 >> ./results/cachesim_result_28583_$t.txt &
echo -n "$t 1024 131072 4 1024 8192 1 - 1116712 - " > ./results/cachesim_result_28584_$t.txt
./cachesim $t 1024 131072 4 1024 8192 1 >> ./results/cachesim_result_28584_$t.txt &
echo -n "$t 1024 131072 4 1024 8192 2 - 1116720 - " > ./results/cachesim_result_28585_$t.txt
./cachesim $t 1024 131072 4 1024 8192 2 >> ./results/cachesim_result_28585_$t.txt &
echo -n "$t 1024 131072 4 1024 8192 4 - 1116728 - " > ./results/cachesim_result_28586_$t.txt
./cachesim $t 1024 131072 4 1024 8192 4 >> ./results/cachesim_result_28586_$t.txt &
echo -n "$t 1024 131072 4 1024 8192 8 - 1116736 - " > ./results/cachesim_result_28587_$t.txt
./cachesim $t 1024 131072 4 1024 8192 8 >> ./results/cachesim_result_28587_$t.txt &
echo -n "$t 1024 131072 4 1024 16384 1 - 1182400 - " > ./results/cachesim_result_28588_$t.txt
./cachesim $t 1024 131072 4 1024 16384 1 >> ./results/cachesim_result_28588_$t.txt &
echo -n "$t 1024 131072 4 1024 16384 2 - 1182416 - " > ./results/cachesim_result_28589_$t.txt
./cachesim $t 1024 131072 4 1024 16384 2 >> ./results/cachesim_result_28589_$t.txt &
echo -n "$t 1024 131072 4 1024 16384 4 - 1182432 - " > ./results/cachesim_result_28590_$t.txt
./cachesim $t 1024 131072 4 1024 16384 4 >> ./results/cachesim_result_28590_$t.txt &
echo -n "$t 1024 131072 4 1024 16384 8 - 1182448 - " > ./results/cachesim_result_28591_$t.txt
./cachesim $t 1024 131072 4 1024 16384 8 >> ./results/cachesim_result_28591_$t.txt &
echo -n "$t 1024 131072 4 1024 16384 16 - 1182464 - " > ./results/cachesim_result_28592_$t.txt
./cachesim $t 1024 131072 4 1024 16384 16 >> ./results/cachesim_result_28592_$t.txt &
echo -n "$t 1024 131072 4 1024 32768 1 - 1313760 - " > ./results/cachesim_result_28593_$t.txt
./cachesim $t 1024 131072 4 1024 32768 1 >> ./results/cachesim_result_28593_$t.txt &
echo -n "$t 1024 131072 4 1024 32768 2 - 1313792 - " > ./results/cachesim_result_28594_$t.txt
./cachesim $t 1024 131072 4 1024 32768 2 >> ./results/cachesim_result_28594_$t.txt &
echo -n "$t 1024 131072 4 1024 32768 4 - 1313824 - " > ./results/cachesim_result_28595_$t.txt
./cachesim $t 1024 131072 4 1024 32768 4 >> ./results/cachesim_result_28595_$t.txt &
echo -n "$t 1024 131072 4 1024 32768 8 - 1313856 - " > ./results/cachesim_result_28596_$t.txt
./cachesim $t 1024 131072 4 1024 32768 8 >> ./results/cachesim_result_28596_$t.txt &
echo -n "$t 1024 131072 4 1024 32768 16 - 1313888 - " > ./results/cachesim_result_28597_$t.txt
./cachesim $t 1024 131072 4 1024 32768 16 >> ./results/cachesim_result_28597_$t.txt &
echo -n "$t 1024 131072 4 1024 32768 32 - 1313920 - " > ./results/cachesim_result_28598_$t.txt
./cachesim $t 1024 131072 4 1024 32768 32 >> ./results/cachesim_result_28598_$t.txt &
echo -n "$t 16 131072 8 16 4096 1 - 1250816 - " > ./results/cachesim_result_28599_$t.txt
./cachesim $t 16 131072 8 16 4096 1 >> ./results/cachesim_result_28599_$t.txt &
echo -n "$t 16 131072 8 32 4096 1 - 1248000 - " > ./results/cachesim_result_28600_$t.txt
./cachesim $t 16 131072 8 32 4096 1 >> ./results/cachesim_result_28600_$t.txt &
echo -n "$t 16 131072 8 64 4096 1 - 1246592 - " > ./results/cachesim_result_28601_$t.txt
./cachesim $t 16 131072 8 64 4096 1 >> ./results/cachesim_result_28601_$t.txt &
echo -n "$t 16 131072 8 128 4096 1 - 1245888 - " > ./results/cachesim_result_28602_$t.txt
./cachesim $t 16 131072 8 128 4096 1 >> ./results/cachesim_result_28602_$t.txt &
echo -n "$t 16 131072 8 256 4096 1 - 1245536 - " > ./results/cachesim_result_28603_$t.txt
./cachesim $t 16 131072 8 256 4096 1 >> ./results/cachesim_result_28603_$t.txt &
echo -n "$t 16 131072 8 512 4096 1 - 1245360 - " > ./results/cachesim_result_28604_$t.txt
./cachesim $t 16 131072 8 512 4096 1 >> ./results/cachesim_result_28604_$t.txt &
echo -n "$t 16 131072 8 1024 4096 1 - 1245272 - " > ./results/cachesim_result_28605_$t.txt
./cachesim $t 16 131072 8 1024 4096 1 >> ./results/cachesim_result_28605_$t.txt &
echo -n "$t 16 131072 8 16 4096 2 - 1251072 - " > ./results/cachesim_result_28606_$t.txt
./cachesim $t 16 131072 8 16 4096 2 >> ./results/cachesim_result_28606_$t.txt &
echo -n "$t 16 131072 8 32 4096 2 - 1248128 - " > ./results/cachesim_result_28607_$t.txt
./cachesim $t 16 131072 8 32 4096 2 >> ./results/cachesim_result_28607_$t.txt &
echo -n "$t 16 131072 8 64 4096 2 - 1246656 - " > ./results/cachesim_result_28608_$t.txt
./cachesim $t 16 131072 8 64 4096 2 >> ./results/cachesim_result_28608_$t.txt &
echo -n "$t 16 131072 8 128 4096 2 - 1245920 - " > ./results/cachesim_result_28609_$t.txt
./cachesim $t 16 131072 8 128 4096 2 >> ./results/cachesim_result_28609_$t.txt &
echo -n "$t 16 131072 8 256 4096 2 - 1245552 - " > ./results/cachesim_result_28610_$t.txt
./cachesim $t 16 131072 8 256 4096 2 >> ./results/cachesim_result_28610_$t.txt &
echo -n "$t 16 131072 8 512 4096 2 - 1245368 - " > ./results/cachesim_result_28611_$t.txt
./cachesim $t 16 131072 8 512 4096 2 >> ./results/cachesim_result_28611_$t.txt &
echo -n "$t 16 131072 8 1024 4096 2 - 1245276 - " > ./results/cachesim_result_28612_$t.txt
./cachesim $t 16 131072 8 1024 4096 2 >> ./results/cachesim_result_28612_$t.txt &
echo -n "$t 16 131072 8 16 4096 4 - 1251328 - " > ./results/cachesim_result_28613_$t.txt
./cachesim $t 16 131072 8 16 4096 4 >> ./results/cachesim_result_28613_$t.txt &
echo -n "$t 16 131072 8 32 4096 4 - 1248256 - " > ./results/cachesim_result_28614_$t.txt
./cachesim $t 16 131072 8 32 4096 4 >> ./results/cachesim_result_28614_$t.txt &
echo -n "$t 16 131072 8 64 4096 4 - 1246720 - " > ./results/cachesim_result_28615_$t.txt
./cachesim $t 16 131072 8 64 4096 4 >> ./results/cachesim_result_28615_$t.txt &
echo -n "$t 16 131072 8 128 4096 4 - 1245952 - " > ./results/cachesim_result_28616_$t.txt
./cachesim $t 16 131072 8 128 4096 4 >> ./results/cachesim_result_28616_$t.txt &
echo -n "$t 16 131072 8 256 4096 4 - 1245568 - " > ./results/cachesim_result_28617_$t.txt
./cachesim $t 16 131072 8 256 4096 4 >> ./results/cachesim_result_28617_$t.txt &
echo -n "$t 16 131072 8 512 4096 4 - 1245376 - " > ./results/cachesim_result_28618_$t.txt
./cachesim $t 16 131072 8 512 4096 4 >> ./results/cachesim_result_28618_$t.txt &
echo -n "$t 16 131072 8 1024 4096 4 - 1245280 - " > ./results/cachesim_result_28619_$t.txt
./cachesim $t 16 131072 8 1024 4096 4 >> ./results/cachesim_result_28619_$t.txt &
echo -n "$t 16 131072 8 16 4096 8 - 1251584 - " > ./results/cachesim_result_28620_$t.txt
./cachesim $t 16 131072 8 16 4096 8 >> ./results/cachesim_result_28620_$t.txt &
echo -n "$t 16 131072 8 32 4096 8 - 1248384 - " > ./results/cachesim_result_28621_$t.txt
./cachesim $t 16 131072 8 32 4096 8 >> ./results/cachesim_result_28621_$t.txt &
echo -n "$t 16 131072 8 64 4096 8 - 1246784 - " > ./results/cachesim_result_28622_$t.txt
./cachesim $t 16 131072 8 64 4096 8 >> ./results/cachesim_result_28622_$t.txt &
echo -n "$t 16 131072 8 128 4096 8 - 1245984 - " > ./results/cachesim_result_28623_$t.txt
./cachesim $t 16 131072 8 128 4096 8 >> ./results/cachesim_result_28623_$t.txt &
echo -n "$t 16 131072 8 256 4096 8 - 1245584 - " > ./results/cachesim_result_28624_$t.txt
./cachesim $t 16 131072 8 256 4096 8 >> ./results/cachesim_result_28624_$t.txt &
echo -n "$t 16 131072 8 512 4096 8 - 1245384 - " > ./results/cachesim_result_28625_$t.txt
./cachesim $t 16 131072 8 512 4096 8 >> ./results/cachesim_result_28625_$t.txt &
echo -n "$t 16 131072 8 16 4096 16 - 1251840 - " > ./results/cachesim_result_28626_$t.txt
./cachesim $t 16 131072 8 16 4096 16 >> ./results/cachesim_result_28626_$t.txt &
echo -n "$t 16 131072 8 32 4096 16 - 1248512 - " > ./results/cachesim_result_28627_$t.txt
./cachesim $t 16 131072 8 32 4096 16 >> ./results/cachesim_result_28627_$t.txt &
echo -n "$t 16 131072 8 64 4096 16 - 1246848 - " > ./results/cachesim_result_28628_$t.txt
./cachesim $t 16 131072 8 64 4096 16 >> ./results/cachesim_result_28628_$t.txt &
echo -n "$t 16 131072 8 128 4096 16 - 1246016 - " > ./results/cachesim_result_28629_$t.txt
./cachesim $t 16 131072 8 128 4096 16 >> ./results/cachesim_result_28629_$t.txt &
echo -n "$t 16 131072 8 256 4096 16 - 1245600 - " > ./results/cachesim_result_28630_$t.txt
./cachesim $t 16 131072 8 256 4096 16 >> ./results/cachesim_result_28630_$t.txt &
echo -n "$t 16 131072 8 16 4096 32 - 1252096 - " > ./results/cachesim_result_28631_$t.txt
./cachesim $t 16 131072 8 16 4096 32 >> ./results/cachesim_result_28631_$t.txt &
echo -n "$t 16 131072 8 32 4096 32 - 1248640 - " > ./results/cachesim_result_28632_$t.txt
./cachesim $t 16 131072 8 32 4096 32 >> ./results/cachesim_result_28632_$t.txt &
echo -n "$t 16 131072 8 64 4096 32 - 1246912 - " > ./results/cachesim_result_28633_$t.txt
./cachesim $t 16 131072 8 64 4096 32 >> ./results/cachesim_result_28633_$t.txt &
echo -n "$t 16 131072 8 128 4096 32 - 1246048 - " > ./results/cachesim_result_28634_$t.txt
./cachesim $t 16 131072 8 128 4096 32 >> ./results/cachesim_result_28634_$t.txt &
echo -n "$t 16 131072 8 16 8192 1 - 1288704 - " > ./results/cachesim_result_28635_$t.txt
./cachesim $t 16 131072 8 16 8192 1 >> ./results/cachesim_result_28635_$t.txt &
echo -n "$t 16 131072 8 32 8192 1 - 1283328 - " > ./results/cachesim_result_28636_$t.txt
./cachesim $t 16 131072 8 32 8192 1 >> ./results/cachesim_result_28636_$t.txt &
echo -n "$t 16 131072 8 64 8192 1 - 1280640 - " > ./results/cachesim_result_28637_$t.txt
./cachesim $t 16 131072 8 64 8192 1 >> ./results/cachesim_result_28637_$t.txt &
echo -n "$t 16 131072 8 128 8192 1 - 1279296 - " > ./results/cachesim_result_28638_$t.txt
./cachesim $t 16 131072 8 128 8192 1 >> ./results/cachesim_result_28638_$t.txt &
echo -n "$t 16 131072 8 256 8192 1 - 1278624 - " > ./results/cachesim_result_28639_$t.txt
./cachesim $t 16 131072 8 256 8192 1 >> ./results/cachesim_result_28639_$t.txt &
echo -n "$t 16 131072 8 512 8192 1 - 1278288 - " > ./results/cachesim_result_28640_$t.txt
./cachesim $t 16 131072 8 512 8192 1 >> ./results/cachesim_result_28640_$t.txt &
echo -n "$t 16 131072 8 1024 8192 1 - 1278120 - " > ./results/cachesim_result_28641_$t.txt
./cachesim $t 16 131072 8 1024 8192 1 >> ./results/cachesim_result_28641_$t.txt &
echo -n "$t 16 131072 8 16 8192 2 - 1289216 - " > ./results/cachesim_result_28642_$t.txt
./cachesim $t 16 131072 8 16 8192 2 >> ./results/cachesim_result_28642_$t.txt &
echo -n "$t 16 131072 8 32 8192 2 - 1283584 - " > ./results/cachesim_result_28643_$t.txt
./cachesim $t 16 131072 8 32 8192 2 >> ./results/cachesim_result_28643_$t.txt &
echo -n "$t 16 131072 8 64 8192 2 - 1280768 - " > ./results/cachesim_result_28644_$t.txt
./cachesim $t 16 131072 8 64 8192 2 >> ./results/cachesim_result_28644_$t.txt &
echo -n "$t 16 131072 8 128 8192 2 - 1279360 - " > ./results/cachesim_result_28645_$t.txt
./cachesim $t 16 131072 8 128 8192 2 >> ./results/cachesim_result_28645_$t.txt &
echo -n "$t 16 131072 8 256 8192 2 - 1278656 - " > ./results/cachesim_result_28646_$t.txt
./cachesim $t 16 131072 8 256 8192 2 >> ./results/cachesim_result_28646_$t.txt &
echo -n "$t 16 131072 8 512 8192 2 - 1278304 - " > ./results/cachesim_result_28647_$t.txt
./cachesim $t 16 131072 8 512 8192 2 >> ./results/cachesim_result_28647_$t.txt &
echo -n "$t 16 131072 8 1024 8192 2 - 1278128 - " > ./results/cachesim_result_28648_$t.txt
./cachesim $t 16 131072 8 1024 8192 2 >> ./results/cachesim_result_28648_$t.txt &
echo -n "$t 16 131072 8 16 8192 4 - 1289728 - " > ./results/cachesim_result_28649_$t.txt
./cachesim $t 16 131072 8 16 8192 4 >> ./results/cachesim_result_28649_$t.txt &
echo -n "$t 16 131072 8 32 8192 4 - 1283840 - " > ./results/cachesim_result_28650_$t.txt
./cachesim $t 16 131072 8 32 8192 4 >> ./results/cachesim_result_28650_$t.txt &
echo -n "$t 16 131072 8 64 8192 4 - 1280896 - " > ./results/cachesim_result_28651_$t.txt
./cachesim $t 16 131072 8 64 8192 4 >> ./results/cachesim_result_28651_$t.txt &
echo -n "$t 16 131072 8 128 8192 4 - 1279424 - " > ./results/cachesim_result_28652_$t.txt
./cachesim $t 16 131072 8 128 8192 4 >> ./results/cachesim_result_28652_$t.txt &
echo -n "$t 16 131072 8 256 8192 4 - 1278688 - " > ./results/cachesim_result_28653_$t.txt
./cachesim $t 16 131072 8 256 8192 4 >> ./results/cachesim_result_28653_$t.txt &
echo -n "$t 16 131072 8 512 8192 4 - 1278320 - " > ./results/cachesim_result_28654_$t.txt
./cachesim $t 16 131072 8 512 8192 4 >> ./results/cachesim_result_28654_$t.txt &
echo -n "$t 16 131072 8 1024 8192 4 - 1278136 - " > ./results/cachesim_result_28655_$t.txt
./cachesim $t 16 131072 8 1024 8192 4 >> ./results/cachesim_result_28655_$t.txt &
echo -n "$t 16 131072 8 16 8192 8 - 1290240 - " > ./results/cachesim_result_28656_$t.txt
./cachesim $t 16 131072 8 16 8192 8 >> ./results/cachesim_result_28656_$t.txt &
echo -n "$t 16 131072 8 32 8192 8 - 1284096 - " > ./results/cachesim_result_28657_$t.txt
./cachesim $t 16 131072 8 32 8192 8 >> ./results/cachesim_result_28657_$t.txt &
echo -n "$t 16 131072 8 64 8192 8 - 1281024 - " > ./results/cachesim_result_28658_$t.txt
./cachesim $t 16 131072 8 64 8192 8 >> ./results/cachesim_result_28658_$t.txt &
echo -n "$t 16 131072 8 128 8192 8 - 1279488 - " > ./results/cachesim_result_28659_$t.txt
./cachesim $t 16 131072 8 128 8192 8 >> ./results/cachesim_result_28659_$t.txt &
echo -n "$t 16 131072 8 256 8192 8 - 1278720 - " > ./results/cachesim_result_28660_$t.txt
./cachesim $t 16 131072 8 256 8192 8 >> ./results/cachesim_result_28660_$t.txt &
echo -n "$t 16 131072 8 512 8192 8 - 1278336 - " > ./results/cachesim_result_28661_$t.txt
./cachesim $t 16 131072 8 512 8192 8 >> ./results/cachesim_result_28661_$t.txt &
echo -n "$t 16 131072 8 1024 8192 8 - 1278144 - " > ./results/cachesim_result_28662_$t.txt
./cachesim $t 16 131072 8 1024 8192 8 >> ./results/cachesim_result_28662_$t.txt &
echo -n "$t 16 131072 8 16 8192 16 - 1290752 - " > ./results/cachesim_result_28663_$t.txt
./cachesim $t 16 131072 8 16 8192 16 >> ./results/cachesim_result_28663_$t.txt &
echo -n "$t 16 131072 8 32 8192 16 - 1284352 - " > ./results/cachesim_result_28664_$t.txt
./cachesim $t 16 131072 8 32 8192 16 >> ./results/cachesim_result_28664_$t.txt &
echo -n "$t 16 131072 8 64 8192 16 - 1281152 - " > ./results/cachesim_result_28665_$t.txt
./cachesim $t 16 131072 8 64 8192 16 >> ./results/cachesim_result_28665_$t.txt &
echo -n "$t 16 131072 8 128 8192 16 - 1279552 - " > ./results/cachesim_result_28666_$t.txt
./cachesim $t 16 131072 8 128 8192 16 >> ./results/cachesim_result_28666_$t.txt &
echo -n "$t 16 131072 8 256 8192 16 - 1278752 - " > ./results/cachesim_result_28667_$t.txt
./cachesim $t 16 131072 8 256 8192 16 >> ./results/cachesim_result_28667_$t.txt &
echo -n "$t 16 131072 8 512 8192 16 - 1278352 - " > ./results/cachesim_result_28668_$t.txt
./cachesim $t 16 131072 8 512 8192 16 >> ./results/cachesim_result_28668_$t.txt &
echo -n "$t 16 131072 8 16 8192 32 - 1291264 - " > ./results/cachesim_result_28669_$t.txt
./cachesim $t 16 131072 8 16 8192 32 >> ./results/cachesim_result_28669_$t.txt &
echo -n "$t 16 131072 8 32 8192 32 - 1284608 - " > ./results/cachesim_result_28670_$t.txt
./cachesim $t 16 131072 8 32 8192 32 >> ./results/cachesim_result_28670_$t.txt &
echo -n "$t 16 131072 8 64 8192 32 - 1281280 - " > ./results/cachesim_result_28671_$t.txt
./cachesim $t 16 131072 8 64 8192 32 >> ./results/cachesim_result_28671_$t.txt &
echo -n "$t 16 131072 8 128 8192 32 - 1279616 - " > ./results/cachesim_result_28672_$t.txt
./cachesim $t 16 131072 8 128 8192 32 >> ./results/cachesim_result_28672_$t.txt &
echo -n "$t 16 131072 8 256 8192 32 - 1278784 - " > ./results/cachesim_result_28673_$t.txt
./cachesim $t 16 131072 8 256 8192 32 >> ./results/cachesim_result_28673_$t.txt &
echo -n "$t 16 131072 8 16 16384 1 - 1363968 - " > ./results/cachesim_result_28674_$t.txt
./cachesim $t 16 131072 8 16 16384 1 >> ./results/cachesim_result_28674_$t.txt &
echo -n "$t 16 131072 8 32 16384 1 - 1353728 - " > ./results/cachesim_result_28675_$t.txt
./cachesim $t 16 131072 8 32 16384 1 >> ./results/cachesim_result_28675_$t.txt &
echo -n "$t 16 131072 8 64 16384 1 - 1348608 - " > ./results/cachesim_result_28676_$t.txt
./cachesim $t 16 131072 8 64 16384 1 >> ./results/cachesim_result_28676_$t.txt &
echo -n "$t 16 131072 8 128 16384 1 - 1346048 - " > ./results/cachesim_result_28677_$t.txt
./cachesim $t 16 131072 8 128 16384 1 >> ./results/cachesim_result_28677_$t.txt &
echo -n "$t 16 131072 8 256 16384 1 - 1344768 - " > ./results/cachesim_result_28678_$t.txt
./cachesim $t 16 131072 8 256 16384 1 >> ./results/cachesim_result_28678_$t.txt &
echo -n "$t 16 131072 8 512 16384 1 - 1344128 - " > ./results/cachesim_result_28679_$t.txt
./cachesim $t 16 131072 8 512 16384 1 >> ./results/cachesim_result_28679_$t.txt &
echo -n "$t 16 131072 8 1024 16384 1 - 1343808 - " > ./results/cachesim_result_28680_$t.txt
./cachesim $t 16 131072 8 1024 16384 1 >> ./results/cachesim_result_28680_$t.txt &
echo -n "$t 16 131072 8 16 16384 2 - 1364992 - " > ./results/cachesim_result_28681_$t.txt
./cachesim $t 16 131072 8 16 16384 2 >> ./results/cachesim_result_28681_$t.txt &
echo -n "$t 16 131072 8 32 16384 2 - 1354240 - " > ./results/cachesim_result_28682_$t.txt
./cachesim $t 16 131072 8 32 16384 2 >> ./results/cachesim_result_28682_$t.txt &
echo -n "$t 16 131072 8 64 16384 2 - 1348864 - " > ./results/cachesim_result_28683_$t.txt
./cachesim $t 16 131072 8 64 16384 2 >> ./results/cachesim_result_28683_$t.txt &
echo -n "$t 16 131072 8 128 16384 2 - 1346176 - " > ./results/cachesim_result_28684_$t.txt
./cachesim $t 16 131072 8 128 16384 2 >> ./results/cachesim_result_28684_$t.txt &
echo -n "$t 16 131072 8 256 16384 2 - 1344832 - " > ./results/cachesim_result_28685_$t.txt
./cachesim $t 16 131072 8 256 16384 2 >> ./results/cachesim_result_28685_$t.txt &
echo -n "$t 16 131072 8 512 16384 2 - 1344160 - " > ./results/cachesim_result_28686_$t.txt
./cachesim $t 16 131072 8 512 16384 2 >> ./results/cachesim_result_28686_$t.txt &
echo -n "$t 16 131072 8 1024 16384 2 - 1343824 - " > ./results/cachesim_result_28687_$t.txt
./cachesim $t 16 131072 8 1024 16384 2 >> ./results/cachesim_result_28687_$t.txt &
echo -n "$t 16 131072 8 16 16384 4 - 1366016 - " > ./results/cachesim_result_28688_$t.txt
./cachesim $t 16 131072 8 16 16384 4 >> ./results/cachesim_result_28688_$t.txt &
echo -n "$t 16 131072 8 32 16384 4 - 1354752 - " > ./results/cachesim_result_28689_$t.txt
./cachesim $t 16 131072 8 32 16384 4 >> ./results/cachesim_result_28689_$t.txt &
echo -n "$t 16 131072 8 64 16384 4 - 1349120 - " > ./results/cachesim_result_28690_$t.txt
./cachesim $t 16 131072 8 64 16384 4 >> ./results/cachesim_result_28690_$t.txt &
echo -n "$t 16 131072 8 128 16384 4 - 1346304 - " > ./results/cachesim_result_28691_$t.txt
./cachesim $t 16 131072 8 128 16384 4 >> ./results/cachesim_result_28691_$t.txt &
echo -n "$t 16 131072 8 256 16384 4 - 1344896 - " > ./results/cachesim_result_28692_$t.txt
./cachesim $t 16 131072 8 256 16384 4 >> ./results/cachesim_result_28692_$t.txt &
echo -n "$t 16 131072 8 512 16384 4 - 1344192 - " > ./results/cachesim_result_28693_$t.txt
./cachesim $t 16 131072 8 512 16384 4 >> ./results/cachesim_result_28693_$t.txt &
echo -n "$t 16 131072 8 1024 16384 4 - 1343840 - " > ./results/cachesim_result_28694_$t.txt
./cachesim $t 16 131072 8 1024 16384 4 >> ./results/cachesim_result_28694_$t.txt &
echo -n "$t 16 131072 8 16 16384 8 - 1367040 - " > ./results/cachesim_result_28695_$t.txt
./cachesim $t 16 131072 8 16 16384 8 >> ./results/cachesim_result_28695_$t.txt &
echo -n "$t 16 131072 8 32 16384 8 - 1355264 - " > ./results/cachesim_result_28696_$t.txt
./cachesim $t 16 131072 8 32 16384 8 >> ./results/cachesim_result_28696_$t.txt &
echo -n "$t 16 131072 8 64 16384 8 - 1349376 - " > ./results/cachesim_result_28697_$t.txt
./cachesim $t 16 131072 8 64 16384 8 >> ./results/cachesim_result_28697_$t.txt &
echo -n "$t 16 131072 8 128 16384 8 - 1346432 - " > ./results/cachesim_result_28698_$t.txt
./cachesim $t 16 131072 8 128 16384 8 >> ./results/cachesim_result_28698_$t.txt &
echo -n "$t 16 131072 8 256 16384 8 - 1344960 - " > ./results/cachesim_result_28699_$t.txt
./cachesim $t 16 131072 8 256 16384 8 >> ./results/cachesim_result_28699_$t.txt &
echo -n "$t 16 131072 8 512 16384 8 - 1344224 - " > ./results/cachesim_result_28700_$t.txt
./cachesim $t 16 131072 8 512 16384 8 >> ./results/cachesim_result_28700_$t.txt &
echo -n "$t 16 131072 8 1024 16384 8 - 1343856 - " > ./results/cachesim_result_28701_$t.txt
./cachesim $t 16 131072 8 1024 16384 8 >> ./results/cachesim_result_28701_$t.txt &
echo -n "$t 16 131072 8 16 16384 16 - 1368064 - " > ./results/cachesim_result_28702_$t.txt
./cachesim $t 16 131072 8 16 16384 16 >> ./results/cachesim_result_28702_$t.txt &
echo -n "$t 16 131072 8 32 16384 16 - 1355776 - " > ./results/cachesim_result_28703_$t.txt
./cachesim $t 16 131072 8 32 16384 16 >> ./results/cachesim_result_28703_$t.txt &
echo -n "$t 16 131072 8 64 16384 16 - 1349632 - " > ./results/cachesim_result_28704_$t.txt
./cachesim $t 16 131072 8 64 16384 16 >> ./results/cachesim_result_28704_$t.txt &
echo -n "$t 16 131072 8 128 16384 16 - 1346560 - " > ./results/cachesim_result_28705_$t.txt
./cachesim $t 16 131072 8 128 16384 16 >> ./results/cachesim_result_28705_$t.txt &
echo -n "$t 16 131072 8 256 16384 16 - 1345024 - " > ./results/cachesim_result_28706_$t.txt
./cachesim $t 16 131072 8 256 16384 16 >> ./results/cachesim_result_28706_$t.txt &
echo -n "$t 16 131072 8 512 16384 16 - 1344256 - " > ./results/cachesim_result_28707_$t.txt
./cachesim $t 16 131072 8 512 16384 16 >> ./results/cachesim_result_28707_$t.txt &
echo -n "$t 16 131072 8 1024 16384 16 - 1343872 - " > ./results/cachesim_result_28708_$t.txt
./cachesim $t 16 131072 8 1024 16384 16 >> ./results/cachesim_result_28708_$t.txt &
echo -n "$t 16 131072 8 16 16384 32 - 1369088 - " > ./results/cachesim_result_28709_$t.txt
./cachesim $t 16 131072 8 16 16384 32 >> ./results/cachesim_result_28709_$t.txt &
echo -n "$t 16 131072 8 32 16384 32 - 1356288 - " > ./results/cachesim_result_28710_$t.txt
./cachesim $t 16 131072 8 32 16384 32 >> ./results/cachesim_result_28710_$t.txt &
echo -n "$t 16 131072 8 64 16384 32 - 1349888 - " > ./results/cachesim_result_28711_$t.txt
./cachesim $t 16 131072 8 64 16384 32 >> ./results/cachesim_result_28711_$t.txt &
echo -n "$t 16 131072 8 128 16384 32 - 1346688 - " > ./results/cachesim_result_28712_$t.txt
./cachesim $t 16 131072 8 128 16384 32 >> ./results/cachesim_result_28712_$t.txt &
echo -n "$t 16 131072 8 256 16384 32 - 1345088 - " > ./results/cachesim_result_28713_$t.txt
./cachesim $t 16 131072 8 256 16384 32 >> ./results/cachesim_result_28713_$t.txt &
echo -n "$t 16 131072 8 512 16384 32 - 1344288 - " > ./results/cachesim_result_28714_$t.txt
./cachesim $t 16 131072 8 512 16384 32 >> ./results/cachesim_result_28714_$t.txt &
echo -n "$t 16 131072 8 32 32768 1 - 1494016 - " > ./results/cachesim_result_28715_$t.txt
./cachesim $t 16 131072 8 32 32768 1 >> ./results/cachesim_result_28715_$t.txt &
echo -n "$t 16 131072 8 64 32768 1 - 1484288 - " > ./results/cachesim_result_28716_$t.txt
./cachesim $t 16 131072 8 64 32768 1 >> ./results/cachesim_result_28716_$t.txt &
echo -n "$t 16 131072 8 128 32768 1 - 1479424 - " > ./results/cachesim_result_28717_$t.txt
./cachesim $t 16 131072 8 128 32768 1 >> ./results/cachesim_result_28717_$t.txt &
echo -n "$t 16 131072 8 256 32768 1 - 1476992 - " > ./results/cachesim_result_28718_$t.txt
./cachesim $t 16 131072 8 256 32768 1 >> ./results/cachesim_result_28718_$t.txt &
echo -n "$t 16 131072 8 512 32768 1 - 1475776 - " > ./results/cachesim_result_28719_$t.txt
./cachesim $t 16 131072 8 512 32768 1 >> ./results/cachesim_result_28719_$t.txt &
echo -n "$t 16 131072 8 1024 32768 1 - 1475168 - " > ./results/cachesim_result_28720_$t.txt
./cachesim $t 16 131072 8 1024 32768 1 >> ./results/cachesim_result_28720_$t.txt &
echo -n "$t 16 131072 8 32 32768 2 - 1495040 - " > ./results/cachesim_result_28721_$t.txt
./cachesim $t 16 131072 8 32 32768 2 >> ./results/cachesim_result_28721_$t.txt &
echo -n "$t 16 131072 8 64 32768 2 - 1484800 - " > ./results/cachesim_result_28722_$t.txt
./cachesim $t 16 131072 8 64 32768 2 >> ./results/cachesim_result_28722_$t.txt &
echo -n "$t 16 131072 8 128 32768 2 - 1479680 - " > ./results/cachesim_result_28723_$t.txt
./cachesim $t 16 131072 8 128 32768 2 >> ./results/cachesim_result_28723_$t.txt &
echo -n "$t 16 131072 8 256 32768 2 - 1477120 - " > ./results/cachesim_result_28724_$t.txt
./cachesim $t 16 131072 8 256 32768 2 >> ./results/cachesim_result_28724_$t.txt &
echo -n "$t 16 131072 8 512 32768 2 - 1475840 - " > ./results/cachesim_result_28725_$t.txt
./cachesim $t 16 131072 8 512 32768 2 >> ./results/cachesim_result_28725_$t.txt &
echo -n "$t 16 131072 8 1024 32768 2 - 1475200 - " > ./results/cachesim_result_28726_$t.txt
./cachesim $t 16 131072 8 1024 32768 2 >> ./results/cachesim_result_28726_$t.txt &
echo -n "$t 16 131072 8 32 32768 4 - 1496064 - " > ./results/cachesim_result_28727_$t.txt
./cachesim $t 16 131072 8 32 32768 4 >> ./results/cachesim_result_28727_$t.txt &
echo -n "$t 16 131072 8 64 32768 4 - 1485312 - " > ./results/cachesim_result_28728_$t.txt
./cachesim $t 16 131072 8 64 32768 4 >> ./results/cachesim_result_28728_$t.txt &
echo -n "$t 16 131072 8 128 32768 4 - 1479936 - " > ./results/cachesim_result_28729_$t.txt
./cachesim $t 16 131072 8 128 32768 4 >> ./results/cachesim_result_28729_$t.txt &
echo -n "$t 16 131072 8 256 32768 4 - 1477248 - " > ./results/cachesim_result_28730_$t.txt
./cachesim $t 16 131072 8 256 32768 4 >> ./results/cachesim_result_28730_$t.txt &
echo -n "$t 16 131072 8 512 32768 4 - 1475904 - " > ./results/cachesim_result_28731_$t.txt
./cachesim $t 16 131072 8 512 32768 4 >> ./results/cachesim_result_28731_$t.txt &
echo -n "$t 16 131072 8 1024 32768 4 - 1475232 - " > ./results/cachesim_result_28732_$t.txt
./cachesim $t 16 131072 8 1024 32768 4 >> ./results/cachesim_result_28732_$t.txt &
echo -n "$t 16 131072 8 32 32768 8 - 1497088 - " > ./results/cachesim_result_28733_$t.txt
./cachesim $t 16 131072 8 32 32768 8 >> ./results/cachesim_result_28733_$t.txt &
echo -n "$t 16 131072 8 64 32768 8 - 1485824 - " > ./results/cachesim_result_28734_$t.txt
./cachesim $t 16 131072 8 64 32768 8 >> ./results/cachesim_result_28734_$t.txt &
echo -n "$t 16 131072 8 128 32768 8 - 1480192 - " > ./results/cachesim_result_28735_$t.txt
./cachesim $t 16 131072 8 128 32768 8 >> ./results/cachesim_result_28735_$t.txt &
echo -n "$t 16 131072 8 256 32768 8 - 1477376 - " > ./results/cachesim_result_28736_$t.txt
./cachesim $t 16 131072 8 256 32768 8 >> ./results/cachesim_result_28736_$t.txt &
echo -n "$t 16 131072 8 512 32768 8 - 1475968 - " > ./results/cachesim_result_28737_$t.txt
./cachesim $t 16 131072 8 512 32768 8 >> ./results/cachesim_result_28737_$t.txt &
echo -n "$t 16 131072 8 1024 32768 8 - 1475264 - " > ./results/cachesim_result_28738_$t.txt
./cachesim $t 16 131072 8 1024 32768 8 >> ./results/cachesim_result_28738_$t.txt &
echo -n "$t 16 131072 8 32 32768 16 - 1498112 - " > ./results/cachesim_result_28739_$t.txt
./cachesim $t 16 131072 8 32 32768 16 >> ./results/cachesim_result_28739_$t.txt &
echo -n "$t 16 131072 8 64 32768 16 - 1486336 - " > ./results/cachesim_result_28740_$t.txt
./cachesim $t 16 131072 8 64 32768 16 >> ./results/cachesim_result_28740_$t.txt &
echo -n "$t 16 131072 8 128 32768 16 - 1480448 - " > ./results/cachesim_result_28741_$t.txt
./cachesim $t 16 131072 8 128 32768 16 >> ./results/cachesim_result_28741_$t.txt &
echo -n "$t 16 131072 8 256 32768 16 - 1477504 - " > ./results/cachesim_result_28742_$t.txt
./cachesim $t 16 131072 8 256 32768 16 >> ./results/cachesim_result_28742_$t.txt &
echo -n "$t 16 131072 8 512 32768 16 - 1476032 - " > ./results/cachesim_result_28743_$t.txt
./cachesim $t 16 131072 8 512 32768 16 >> ./results/cachesim_result_28743_$t.txt &
echo -n "$t 16 131072 8 1024 32768 16 - 1475296 - " > ./results/cachesim_result_28744_$t.txt
./cachesim $t 16 131072 8 1024 32768 16 >> ./results/cachesim_result_28744_$t.txt &
echo -n "$t 16 131072 8 32 32768 32 - 1499136 - " > ./results/cachesim_result_28745_$t.txt
./cachesim $t 16 131072 8 32 32768 32 >> ./results/cachesim_result_28745_$t.txt &
echo -n "$t 16 131072 8 64 32768 32 - 1486848 - " > ./results/cachesim_result_28746_$t.txt
./cachesim $t 16 131072 8 64 32768 32 >> ./results/cachesim_result_28746_$t.txt &
echo -n "$t 16 131072 8 128 32768 32 - 1480704 - " > ./results/cachesim_result_28747_$t.txt
./cachesim $t 16 131072 8 128 32768 32 >> ./results/cachesim_result_28747_$t.txt &
echo -n "$t 16 131072 8 256 32768 32 - 1477632 - " > ./results/cachesim_result_28748_$t.txt
./cachesim $t 16 131072 8 256 32768 32 >> ./results/cachesim_result_28748_$t.txt &
echo -n "$t 16 131072 8 512 32768 32 - 1476096 - " > ./results/cachesim_result_28749_$t.txt
./cachesim $t 16 131072 8 512 32768 32 >> ./results/cachesim_result_28749_$t.txt &
echo -n "$t 16 131072 8 1024 32768 32 - 1475328 - " > ./results/cachesim_result_28750_$t.txt
./cachesim $t 16 131072 8 1024 32768 32 >> ./results/cachesim_result_28750_$t.txt &
echo -n "$t 32 131072 8 32 4096 1 - 1166080 - " > ./results/cachesim_result_28751_$t.txt
./cachesim $t 32 131072 8 32 4096 1 >> ./results/cachesim_result_28751_$t.txt &
echo -n "$t 32 131072 8 64 4096 1 - 1164672 - " > ./results/cachesim_result_28752_$t.txt
./cachesim $t 32 131072 8 64 4096 1 >> ./results/cachesim_result_28752_$t.txt &
echo -n "$t 32 131072 8 128 4096 1 - 1163968 - " > ./results/cachesim_result_28753_$t.txt
./cachesim $t 32 131072 8 128 4096 1 >> ./results/cachesim_result_28753_$t.txt &
echo -n "$t 32 131072 8 256 4096 1 - 1163616 - " > ./results/cachesim_result_28754_$t.txt
./cachesim $t 32 131072 8 256 4096 1 >> ./results/cachesim_result_28754_$t.txt &
echo -n "$t 32 131072 8 512 4096 1 - 1163440 - " > ./results/cachesim_result_28755_$t.txt
./cachesim $t 32 131072 8 512 4096 1 >> ./results/cachesim_result_28755_$t.txt &
echo -n "$t 32 131072 8 1024 4096 1 - 1163352 - " > ./results/cachesim_result_28756_$t.txt
./cachesim $t 32 131072 8 1024 4096 1 >> ./results/cachesim_result_28756_$t.txt &
echo -n "$t 32 131072 8 32 4096 2 - 1166208 - " > ./results/cachesim_result_28757_$t.txt
./cachesim $t 32 131072 8 32 4096 2 >> ./results/cachesim_result_28757_$t.txt &
echo -n "$t 32 131072 8 64 4096 2 - 1164736 - " > ./results/cachesim_result_28758_$t.txt
./cachesim $t 32 131072 8 64 4096 2 >> ./results/cachesim_result_28758_$t.txt &
echo -n "$t 32 131072 8 128 4096 2 - 1164000 - " > ./results/cachesim_result_28759_$t.txt
./cachesim $t 32 131072 8 128 4096 2 >> ./results/cachesim_result_28759_$t.txt &
echo -n "$t 32 131072 8 256 4096 2 - 1163632 - " > ./results/cachesim_result_28760_$t.txt
./cachesim $t 32 131072 8 256 4096 2 >> ./results/cachesim_result_28760_$t.txt &
echo -n "$t 32 131072 8 512 4096 2 - 1163448 - " > ./results/cachesim_result_28761_$t.txt
./cachesim $t 32 131072 8 512 4096 2 >> ./results/cachesim_result_28761_$t.txt &
echo -n "$t 32 131072 8 1024 4096 2 - 1163356 - " > ./results/cachesim_result_28762_$t.txt
./cachesim $t 32 131072 8 1024 4096 2 >> ./results/cachesim_result_28762_$t.txt &
echo -n "$t 32 131072 8 32 4096 4 - 1166336 - " > ./results/cachesim_result_28763_$t.txt
./cachesim $t 32 131072 8 32 4096 4 >> ./results/cachesim_result_28763_$t.txt &
echo -n "$t 32 131072 8 64 4096 4 - 1164800 - " > ./results/cachesim_result_28764_$t.txt
./cachesim $t 32 131072 8 64 4096 4 >> ./results/cachesim_result_28764_$t.txt &
echo -n "$t 32 131072 8 128 4096 4 - 1164032 - " > ./results/cachesim_result_28765_$t.txt
./cachesim $t 32 131072 8 128 4096 4 >> ./results/cachesim_result_28765_$t.txt &
echo -n "$t 32 131072 8 256 4096 4 - 1163648 - " > ./results/cachesim_result_28766_$t.txt
./cachesim $t 32 131072 8 256 4096 4 >> ./results/cachesim_result_28766_$t.txt &
echo -n "$t 32 131072 8 512 4096 4 - 1163456 - " > ./results/cachesim_result_28767_$t.txt
./cachesim $t 32 131072 8 512 4096 4 >> ./results/cachesim_result_28767_$t.txt &
echo -n "$t 32 131072 8 1024 4096 4 - 1163360 - " > ./results/cachesim_result_28768_$t.txt
./cachesim $t 32 131072 8 1024 4096 4 >> ./results/cachesim_result_28768_$t.txt &
echo -n "$t 32 131072 8 32 4096 8 - 1166464 - " > ./results/cachesim_result_28769_$t.txt
./cachesim $t 32 131072 8 32 4096 8 >> ./results/cachesim_result_28769_$t.txt &
echo -n "$t 32 131072 8 64 4096 8 - 1164864 - " > ./results/cachesim_result_28770_$t.txt
./cachesim $t 32 131072 8 64 4096 8 >> ./results/cachesim_result_28770_$t.txt &
echo -n "$t 32 131072 8 128 4096 8 - 1164064 - " > ./results/cachesim_result_28771_$t.txt
./cachesim $t 32 131072 8 128 4096 8 >> ./results/cachesim_result_28771_$t.txt &
echo -n "$t 32 131072 8 256 4096 8 - 1163664 - " > ./results/cachesim_result_28772_$t.txt
./cachesim $t 32 131072 8 256 4096 8 >> ./results/cachesim_result_28772_$t.txt &
echo -n "$t 32 131072 8 512 4096 8 - 1163464 - " > ./results/cachesim_result_28773_$t.txt
./cachesim $t 32 131072 8 512 4096 8 >> ./results/cachesim_result_28773_$t.txt &
echo -n "$t 32 131072 8 32 4096 16 - 1166592 - " > ./results/cachesim_result_28774_$t.txt
./cachesim $t 32 131072 8 32 4096 16 >> ./results/cachesim_result_28774_$t.txt &
echo -n "$t 32 131072 8 64 4096 16 - 1164928 - " > ./results/cachesim_result_28775_$t.txt
./cachesim $t 32 131072 8 64 4096 16 >> ./results/cachesim_result_28775_$t.txt &
echo -n "$t 32 131072 8 128 4096 16 - 1164096 - " > ./results/cachesim_result_28776_$t.txt
./cachesim $t 32 131072 8 128 4096 16 >> ./results/cachesim_result_28776_$t.txt &
echo -n "$t 32 131072 8 256 4096 16 - 1163680 - " > ./results/cachesim_result_28777_$t.txt
./cachesim $t 32 131072 8 256 4096 16 >> ./results/cachesim_result_28777_$t.txt &
echo -n "$t 32 131072 8 32 4096 32 - 1166720 - " > ./results/cachesim_result_28778_$t.txt
./cachesim $t 32 131072 8 32 4096 32 >> ./results/cachesim_result_28778_$t.txt &
echo -n "$t 32 131072 8 64 4096 32 - 1164992 - " > ./results/cachesim_result_28779_$t.txt
./cachesim $t 32 131072 8 64 4096 32 >> ./results/cachesim_result_28779_$t.txt &
echo -n "$t 32 131072 8 128 4096 32 - 1164128 - " > ./results/cachesim_result_28780_$t.txt
./cachesim $t 32 131072 8 128 4096 32 >> ./results/cachesim_result_28780_$t.txt &
echo -n "$t 32 131072 8 32 8192 1 - 1201408 - " > ./results/cachesim_result_28781_$t.txt
./cachesim $t 32 131072 8 32 8192 1 >> ./results/cachesim_result_28781_$t.txt &
echo -n "$t 32 131072 8 64 8192 1 - 1198720 - " > ./results/cachesim_result_28782_$t.txt
./cachesim $t 32 131072 8 64 8192 1 >> ./results/cachesim_result_28782_$t.txt &
echo -n "$t 32 131072 8 128 8192 1 - 1197376 - " > ./results/cachesim_result_28783_$t.txt
./cachesim $t 32 131072 8 128 8192 1 >> ./results/cachesim_result_28783_$t.txt &
echo -n "$t 32 131072 8 256 8192 1 - 1196704 - " > ./results/cachesim_result_28784_$t.txt
./cachesim $t 32 131072 8 256 8192 1 >> ./results/cachesim_result_28784_$t.txt &
echo -n "$t 32 131072 8 512 8192 1 - 1196368 - " > ./results/cachesim_result_28785_$t.txt
./cachesim $t 32 131072 8 512 8192 1 >> ./results/cachesim_result_28785_$t.txt &
echo -n "$t 32 131072 8 1024 8192 1 - 1196200 - " > ./results/cachesim_result_28786_$t.txt
./cachesim $t 32 131072 8 1024 8192 1 >> ./results/cachesim_result_28786_$t.txt &
echo -n "$t 32 131072 8 32 8192 2 - 1201664 - " > ./results/cachesim_result_28787_$t.txt
./cachesim $t 32 131072 8 32 8192 2 >> ./results/cachesim_result_28787_$t.txt &
echo -n "$t 32 131072 8 64 8192 2 - 1198848 - " > ./results/cachesim_result_28788_$t.txt
./cachesim $t 32 131072 8 64 8192 2 >> ./results/cachesim_result_28788_$t.txt &
echo -n "$t 32 131072 8 128 8192 2 - 1197440 - " > ./results/cachesim_result_28789_$t.txt
./cachesim $t 32 131072 8 128 8192 2 >> ./results/cachesim_result_28789_$t.txt &
echo -n "$t 32 131072 8 256 8192 2 - 1196736 - " > ./results/cachesim_result_28790_$t.txt
./cachesim $t 32 131072 8 256 8192 2 >> ./results/cachesim_result_28790_$t.txt &
echo -n "$t 32 131072 8 512 8192 2 - 1196384 - " > ./results/cachesim_result_28791_$t.txt
./cachesim $t 32 131072 8 512 8192 2 >> ./results/cachesim_result_28791_$t.txt &
echo -n "$t 32 131072 8 1024 8192 2 - 1196208 - " > ./results/cachesim_result_28792_$t.txt
./cachesim $t 32 131072 8 1024 8192 2 >> ./results/cachesim_result_28792_$t.txt &
echo -n "$t 32 131072 8 32 8192 4 - 1201920 - " > ./results/cachesim_result_28793_$t.txt
./cachesim $t 32 131072 8 32 8192 4 >> ./results/cachesim_result_28793_$t.txt &
echo -n "$t 32 131072 8 64 8192 4 - 1198976 - " > ./results/cachesim_result_28794_$t.txt
./cachesim $t 32 131072 8 64 8192 4 >> ./results/cachesim_result_28794_$t.txt &
echo -n "$t 32 131072 8 128 8192 4 - 1197504 - " > ./results/cachesim_result_28795_$t.txt
./cachesim $t 32 131072 8 128 8192 4 >> ./results/cachesim_result_28795_$t.txt &
echo -n "$t 32 131072 8 256 8192 4 - 1196768 - " > ./results/cachesim_result_28796_$t.txt
./cachesim $t 32 131072 8 256 8192 4 >> ./results/cachesim_result_28796_$t.txt &
echo -n "$t 32 131072 8 512 8192 4 - 1196400 - " > ./results/cachesim_result_28797_$t.txt
./cachesim $t 32 131072 8 512 8192 4 >> ./results/cachesim_result_28797_$t.txt &
echo -n "$t 32 131072 8 1024 8192 4 - 1196216 - " > ./results/cachesim_result_28798_$t.txt
./cachesim $t 32 131072 8 1024 8192 4 >> ./results/cachesim_result_28798_$t.txt &
echo -n "$t 32 131072 8 32 8192 8 - 1202176 - " > ./results/cachesim_result_28799_$t.txt
./cachesim $t 32 131072 8 32 8192 8 >> ./results/cachesim_result_28799_$t.txt &
echo -n "$t 32 131072 8 64 8192 8 - 1199104 - " > ./results/cachesim_result_28800_$t.txt
./cachesim $t 32 131072 8 64 8192 8 >> ./results/cachesim_result_28800_$t.txt &
echo -n "$t 32 131072 8 128 8192 8 - 1197568 - " > ./results/cachesim_result_28801_$t.txt
./cachesim $t 32 131072 8 128 8192 8 >> ./results/cachesim_result_28801_$t.txt &
echo -n "$t 32 131072 8 256 8192 8 - 1196800 - " > ./results/cachesim_result_28802_$t.txt
./cachesim $t 32 131072 8 256 8192 8 >> ./results/cachesim_result_28802_$t.txt &
echo -n "$t 32 131072 8 512 8192 8 - 1196416 - " > ./results/cachesim_result_28803_$t.txt
./cachesim $t 32 131072 8 512 8192 8 >> ./results/cachesim_result_28803_$t.txt &
echo -n "$t 32 131072 8 1024 8192 8 - 1196224 - " > ./results/cachesim_result_28804_$t.txt
./cachesim $t 32 131072 8 1024 8192 8 >> ./results/cachesim_result_28804_$t.txt &
echo -n "$t 32 131072 8 32 8192 16 - 1202432 - " > ./results/cachesim_result_28805_$t.txt
./cachesim $t 32 131072 8 32 8192 16 >> ./results/cachesim_result_28805_$t.txt &
echo -n "$t 32 131072 8 64 8192 16 - 1199232 - " > ./results/cachesim_result_28806_$t.txt
./cachesim $t 32 131072 8 64 8192 16 >> ./results/cachesim_result_28806_$t.txt &
echo -n "$t 32 131072 8 128 8192 16 - 1197632 - " > ./results/cachesim_result_28807_$t.txt
./cachesim $t 32 131072 8 128 8192 16 >> ./results/cachesim_result_28807_$t.txt &
echo -n "$t 32 131072 8 256 8192 16 - 1196832 - " > ./results/cachesim_result_28808_$t.txt
./cachesim $t 32 131072 8 256 8192 16 >> ./results/cachesim_result_28808_$t.txt &
echo -n "$t 32 131072 8 512 8192 16 - 1196432 - " > ./results/cachesim_result_28809_$t.txt
./cachesim $t 32 131072 8 512 8192 16 >> ./results/cachesim_result_28809_$t.txt &
echo -n "$t 32 131072 8 32 8192 32 - 1202688 - " > ./results/cachesim_result_28810_$t.txt
./cachesim $t 32 131072 8 32 8192 32 >> ./results/cachesim_result_28810_$t.txt &
echo -n "$t 32 131072 8 64 8192 32 - 1199360 - " > ./results/cachesim_result_28811_$t.txt
./cachesim $t 32 131072 8 64 8192 32 >> ./results/cachesim_result_28811_$t.txt &
echo -n "$t 32 131072 8 128 8192 32 - 1197696 - " > ./results/cachesim_result_28812_$t.txt
./cachesim $t 32 131072 8 128 8192 32 >> ./results/cachesim_result_28812_$t.txt &
echo -n "$t 32 131072 8 256 8192 32 - 1196864 - " > ./results/cachesim_result_28813_$t.txt
./cachesim $t 32 131072 8 256 8192 32 >> ./results/cachesim_result_28813_$t.txt &
echo -n "$t 32 131072 8 32 16384 1 - 1271808 - " > ./results/cachesim_result_28814_$t.txt
./cachesim $t 32 131072 8 32 16384 1 >> ./results/cachesim_result_28814_$t.txt &
echo -n "$t 32 131072 8 64 16384 1 - 1266688 - " > ./results/cachesim_result_28815_$t.txt
./cachesim $t 32 131072 8 64 16384 1 >> ./results/cachesim_result_28815_$t.txt &
echo -n "$t 32 131072 8 128 16384 1 - 1264128 - " > ./results/cachesim_result_28816_$t.txt
./cachesim $t 32 131072 8 128 16384 1 >> ./results/cachesim_result_28816_$t.txt &
echo -n "$t 32 131072 8 256 16384 1 - 1262848 - " > ./results/cachesim_result_28817_$t.txt
./cachesim $t 32 131072 8 256 16384 1 >> ./results/cachesim_result_28817_$t.txt &
echo -n "$t 32 131072 8 512 16384 1 - 1262208 - " > ./results/cachesim_result_28818_$t.txt
./cachesim $t 32 131072 8 512 16384 1 >> ./results/cachesim_result_28818_$t.txt &
echo -n "$t 32 131072 8 1024 16384 1 - 1261888 - " > ./results/cachesim_result_28819_$t.txt
./cachesim $t 32 131072 8 1024 16384 1 >> ./results/cachesim_result_28819_$t.txt &
echo -n "$t 32 131072 8 32 16384 2 - 1272320 - " > ./results/cachesim_result_28820_$t.txt
./cachesim $t 32 131072 8 32 16384 2 >> ./results/cachesim_result_28820_$t.txt &
echo -n "$t 32 131072 8 64 16384 2 - 1266944 - " > ./results/cachesim_result_28821_$t.txt
./cachesim $t 32 131072 8 64 16384 2 >> ./results/cachesim_result_28821_$t.txt &
echo -n "$t 32 131072 8 128 16384 2 - 1264256 - " > ./results/cachesim_result_28822_$t.txt
./cachesim $t 32 131072 8 128 16384 2 >> ./results/cachesim_result_28822_$t.txt &
echo -n "$t 32 131072 8 256 16384 2 - 1262912 - " > ./results/cachesim_result_28823_$t.txt
./cachesim $t 32 131072 8 256 16384 2 >> ./results/cachesim_result_28823_$t.txt &
echo -n "$t 32 131072 8 512 16384 2 - 1262240 - " > ./results/cachesim_result_28824_$t.txt
./cachesim $t 32 131072 8 512 16384 2 >> ./results/cachesim_result_28824_$t.txt &
echo -n "$t 32 131072 8 1024 16384 2 - 1261904 - " > ./results/cachesim_result_28825_$t.txt
./cachesim $t 32 131072 8 1024 16384 2 >> ./results/cachesim_result_28825_$t.txt &
echo -n "$t 32 131072 8 32 16384 4 - 1272832 - " > ./results/cachesim_result_28826_$t.txt
./cachesim $t 32 131072 8 32 16384 4 >> ./results/cachesim_result_28826_$t.txt &
echo -n "$t 32 131072 8 64 16384 4 - 1267200 - " > ./results/cachesim_result_28827_$t.txt
./cachesim $t 32 131072 8 64 16384 4 >> ./results/cachesim_result_28827_$t.txt &
echo -n "$t 32 131072 8 128 16384 4 - 1264384 - " > ./results/cachesim_result_28828_$t.txt
./cachesim $t 32 131072 8 128 16384 4 >> ./results/cachesim_result_28828_$t.txt &
echo -n "$t 32 131072 8 256 16384 4 - 1262976 - " > ./results/cachesim_result_28829_$t.txt
./cachesim $t 32 131072 8 256 16384 4 >> ./results/cachesim_result_28829_$t.txt &
echo -n "$t 32 131072 8 512 16384 4 - 1262272 - " > ./results/cachesim_result_28830_$t.txt
./cachesim $t 32 131072 8 512 16384 4 >> ./results/cachesim_result_28830_$t.txt &
echo -n "$t 32 131072 8 1024 16384 4 - 1261920 - " > ./results/cachesim_result_28831_$t.txt
./cachesim $t 32 131072 8 1024 16384 4 >> ./results/cachesim_result_28831_$t.txt &
echo -n "$t 32 131072 8 32 16384 8 - 1273344 - " > ./results/cachesim_result_28832_$t.txt
./cachesim $t 32 131072 8 32 16384 8 >> ./results/cachesim_result_28832_$t.txt &
echo -n "$t 32 131072 8 64 16384 8 - 1267456 - " > ./results/cachesim_result_28833_$t.txt
./cachesim $t 32 131072 8 64 16384 8 >> ./results/cachesim_result_28833_$t.txt &
echo -n "$t 32 131072 8 128 16384 8 - 1264512 - " > ./results/cachesim_result_28834_$t.txt
./cachesim $t 32 131072 8 128 16384 8 >> ./results/cachesim_result_28834_$t.txt &
echo -n "$t 32 131072 8 256 16384 8 - 1263040 - " > ./results/cachesim_result_28835_$t.txt
./cachesim $t 32 131072 8 256 16384 8 >> ./results/cachesim_result_28835_$t.txt &
echo -n "$t 32 131072 8 512 16384 8 - 1262304 - " > ./results/cachesim_result_28836_$t.txt
./cachesim $t 32 131072 8 512 16384 8 >> ./results/cachesim_result_28836_$t.txt &
echo -n "$t 32 131072 8 1024 16384 8 - 1261936 - " > ./results/cachesim_result_28837_$t.txt
./cachesim $t 32 131072 8 1024 16384 8 >> ./results/cachesim_result_28837_$t.txt &
echo -n "$t 32 131072 8 32 16384 16 - 1273856 - " > ./results/cachesim_result_28838_$t.txt
./cachesim $t 32 131072 8 32 16384 16 >> ./results/cachesim_result_28838_$t.txt &
echo -n "$t 32 131072 8 64 16384 16 - 1267712 - " > ./results/cachesim_result_28839_$t.txt
./cachesim $t 32 131072 8 64 16384 16 >> ./results/cachesim_result_28839_$t.txt &
echo -n "$t 32 131072 8 128 16384 16 - 1264640 - " > ./results/cachesim_result_28840_$t.txt
./cachesim $t 32 131072 8 128 16384 16 >> ./results/cachesim_result_28840_$t.txt &
echo -n "$t 32 131072 8 256 16384 16 - 1263104 - " > ./results/cachesim_result_28841_$t.txt
./cachesim $t 32 131072 8 256 16384 16 >> ./results/cachesim_result_28841_$t.txt &
echo -n "$t 32 131072 8 512 16384 16 - 1262336 - " > ./results/cachesim_result_28842_$t.txt
./cachesim $t 32 131072 8 512 16384 16 >> ./results/cachesim_result_28842_$t.txt &
echo -n "$t 32 131072 8 1024 16384 16 - 1261952 - " > ./results/cachesim_result_28843_$t.txt
./cachesim $t 32 131072 8 1024 16384 16 >> ./results/cachesim_result_28843_$t.txt &
echo -n "$t 32 131072 8 32 16384 32 - 1274368 - " > ./results/cachesim_result_28844_$t.txt
./cachesim $t 32 131072 8 32 16384 32 >> ./results/cachesim_result_28844_$t.txt &
echo -n "$t 32 131072 8 64 16384 32 - 1267968 - " > ./results/cachesim_result_28845_$t.txt
./cachesim $t 32 131072 8 64 16384 32 >> ./results/cachesim_result_28845_$t.txt &
echo -n "$t 32 131072 8 128 16384 32 - 1264768 - " > ./results/cachesim_result_28846_$t.txt
./cachesim $t 32 131072 8 128 16384 32 >> ./results/cachesim_result_28846_$t.txt &
echo -n "$t 32 131072 8 256 16384 32 - 1263168 - " > ./results/cachesim_result_28847_$t.txt
./cachesim $t 32 131072 8 256 16384 32 >> ./results/cachesim_result_28847_$t.txt &
echo -n "$t 32 131072 8 512 16384 32 - 1262368 - " > ./results/cachesim_result_28848_$t.txt
./cachesim $t 32 131072 8 512 16384 32 >> ./results/cachesim_result_28848_$t.txt &
echo -n "$t 32 131072 8 32 32768 1 - 1412096 - " > ./results/cachesim_result_28849_$t.txt
./cachesim $t 32 131072 8 32 32768 1 >> ./results/cachesim_result_28849_$t.txt &
echo -n "$t 32 131072 8 64 32768 1 - 1402368 - " > ./results/cachesim_result_28850_$t.txt
./cachesim $t 32 131072 8 64 32768 1 >> ./results/cachesim_result_28850_$t.txt &
echo -n "$t 32 131072 8 128 32768 1 - 1397504 - " > ./results/cachesim_result_28851_$t.txt
./cachesim $t 32 131072 8 128 32768 1 >> ./results/cachesim_result_28851_$t.txt &
echo -n "$t 32 131072 8 256 32768 1 - 1395072 - " > ./results/cachesim_result_28852_$t.txt
./cachesim $t 32 131072 8 256 32768 1 >> ./results/cachesim_result_28852_$t.txt &
echo -n "$t 32 131072 8 512 32768 1 - 1393856 - " > ./results/cachesim_result_28853_$t.txt
./cachesim $t 32 131072 8 512 32768 1 >> ./results/cachesim_result_28853_$t.txt &
echo -n "$t 32 131072 8 1024 32768 1 - 1393248 - " > ./results/cachesim_result_28854_$t.txt
./cachesim $t 32 131072 8 1024 32768 1 >> ./results/cachesim_result_28854_$t.txt &
echo -n "$t 32 131072 8 32 32768 2 - 1413120 - " > ./results/cachesim_result_28855_$t.txt
./cachesim $t 32 131072 8 32 32768 2 >> ./results/cachesim_result_28855_$t.txt &
echo -n "$t 32 131072 8 64 32768 2 - 1402880 - " > ./results/cachesim_result_28856_$t.txt
./cachesim $t 32 131072 8 64 32768 2 >> ./results/cachesim_result_28856_$t.txt &
echo -n "$t 32 131072 8 128 32768 2 - 1397760 - " > ./results/cachesim_result_28857_$t.txt
./cachesim $t 32 131072 8 128 32768 2 >> ./results/cachesim_result_28857_$t.txt &
echo -n "$t 32 131072 8 256 32768 2 - 1395200 - " > ./results/cachesim_result_28858_$t.txt
./cachesim $t 32 131072 8 256 32768 2 >> ./results/cachesim_result_28858_$t.txt &
echo -n "$t 32 131072 8 512 32768 2 - 1393920 - " > ./results/cachesim_result_28859_$t.txt
./cachesim $t 32 131072 8 512 32768 2 >> ./results/cachesim_result_28859_$t.txt &
echo -n "$t 32 131072 8 1024 32768 2 - 1393280 - " > ./results/cachesim_result_28860_$t.txt
./cachesim $t 32 131072 8 1024 32768 2 >> ./results/cachesim_result_28860_$t.txt &
echo -n "$t 32 131072 8 32 32768 4 - 1414144 - " > ./results/cachesim_result_28861_$t.txt
./cachesim $t 32 131072 8 32 32768 4 >> ./results/cachesim_result_28861_$t.txt &
echo -n "$t 32 131072 8 64 32768 4 - 1403392 - " > ./results/cachesim_result_28862_$t.txt
./cachesim $t 32 131072 8 64 32768 4 >> ./results/cachesim_result_28862_$t.txt &
echo -n "$t 32 131072 8 128 32768 4 - 1398016 - " > ./results/cachesim_result_28863_$t.txt
./cachesim $t 32 131072 8 128 32768 4 >> ./results/cachesim_result_28863_$t.txt &
echo -n "$t 32 131072 8 256 32768 4 - 1395328 - " > ./results/cachesim_result_28864_$t.txt
./cachesim $t 32 131072 8 256 32768 4 >> ./results/cachesim_result_28864_$t.txt &
echo -n "$t 32 131072 8 512 32768 4 - 1393984 - " > ./results/cachesim_result_28865_$t.txt
./cachesim $t 32 131072 8 512 32768 4 >> ./results/cachesim_result_28865_$t.txt &
echo -n "$t 32 131072 8 1024 32768 4 - 1393312 - " > ./results/cachesim_result_28866_$t.txt
./cachesim $t 32 131072 8 1024 32768 4 >> ./results/cachesim_result_28866_$t.txt &
echo -n "$t 32 131072 8 32 32768 8 - 1415168 - " > ./results/cachesim_result_28867_$t.txt
./cachesim $t 32 131072 8 32 32768 8 >> ./results/cachesim_result_28867_$t.txt &
echo -n "$t 32 131072 8 64 32768 8 - 1403904 - " > ./results/cachesim_result_28868_$t.txt
./cachesim $t 32 131072 8 64 32768 8 >> ./results/cachesim_result_28868_$t.txt &
echo -n "$t 32 131072 8 128 32768 8 - 1398272 - " > ./results/cachesim_result_28869_$t.txt
./cachesim $t 32 131072 8 128 32768 8 >> ./results/cachesim_result_28869_$t.txt &
echo -n "$t 32 131072 8 256 32768 8 - 1395456 - " > ./results/cachesim_result_28870_$t.txt
./cachesim $t 32 131072 8 256 32768 8 >> ./results/cachesim_result_28870_$t.txt &
echo -n "$t 32 131072 8 512 32768 8 - 1394048 - " > ./results/cachesim_result_28871_$t.txt
./cachesim $t 32 131072 8 512 32768 8 >> ./results/cachesim_result_28871_$t.txt &
echo -n "$t 32 131072 8 1024 32768 8 - 1393344 - " > ./results/cachesim_result_28872_$t.txt
./cachesim $t 32 131072 8 1024 32768 8 >> ./results/cachesim_result_28872_$t.txt &
echo -n "$t 32 131072 8 32 32768 16 - 1416192 - " > ./results/cachesim_result_28873_$t.txt
./cachesim $t 32 131072 8 32 32768 16 >> ./results/cachesim_result_28873_$t.txt &
echo -n "$t 32 131072 8 64 32768 16 - 1404416 - " > ./results/cachesim_result_28874_$t.txt
./cachesim $t 32 131072 8 64 32768 16 >> ./results/cachesim_result_28874_$t.txt &
echo -n "$t 32 131072 8 128 32768 16 - 1398528 - " > ./results/cachesim_result_28875_$t.txt
./cachesim $t 32 131072 8 128 32768 16 >> ./results/cachesim_result_28875_$t.txt &
echo -n "$t 32 131072 8 256 32768 16 - 1395584 - " > ./results/cachesim_result_28876_$t.txt
./cachesim $t 32 131072 8 256 32768 16 >> ./results/cachesim_result_28876_$t.txt &
echo -n "$t 32 131072 8 512 32768 16 - 1394112 - " > ./results/cachesim_result_28877_$t.txt
./cachesim $t 32 131072 8 512 32768 16 >> ./results/cachesim_result_28877_$t.txt &
echo -n "$t 32 131072 8 1024 32768 16 - 1393376 - " > ./results/cachesim_result_28878_$t.txt
./cachesim $t 32 131072 8 1024 32768 16 >> ./results/cachesim_result_28878_$t.txt &
echo -n "$t 32 131072 8 32 32768 32 - 1417216 - " > ./results/cachesim_result_28879_$t.txt
./cachesim $t 32 131072 8 32 32768 32 >> ./results/cachesim_result_28879_$t.txt &
echo -n "$t 32 131072 8 64 32768 32 - 1404928 - " > ./results/cachesim_result_28880_$t.txt
./cachesim $t 32 131072 8 64 32768 32 >> ./results/cachesim_result_28880_$t.txt &
echo -n "$t 32 131072 8 128 32768 32 - 1398784 - " > ./results/cachesim_result_28881_$t.txt
./cachesim $t 32 131072 8 128 32768 32 >> ./results/cachesim_result_28881_$t.txt &
echo -n "$t 32 131072 8 256 32768 32 - 1395712 - " > ./results/cachesim_result_28882_$t.txt
./cachesim $t 32 131072 8 256 32768 32 >> ./results/cachesim_result_28882_$t.txt &
echo -n "$t 32 131072 8 512 32768 32 - 1394176 - " > ./results/cachesim_result_28883_$t.txt
./cachesim $t 32 131072 8 512 32768 32 >> ./results/cachesim_result_28883_$t.txt &
echo -n "$t 32 131072 8 1024 32768 32 - 1393408 - " > ./results/cachesim_result_28884_$t.txt
./cachesim $t 32 131072 8 1024 32768 32 >> ./results/cachesim_result_28884_$t.txt &
echo -n "$t 64 131072 8 64 4096 1 - 1123712 - " > ./results/cachesim_result_28885_$t.txt
./cachesim $t 64 131072 8 64 4096 1 >> ./results/cachesim_result_28885_$t.txt &
echo -n "$t 64 131072 8 128 4096 1 - 1123008 - " > ./results/cachesim_result_28886_$t.txt
./cachesim $t 64 131072 8 128 4096 1 >> ./results/cachesim_result_28886_$t.txt &
echo -n "$t 64 131072 8 256 4096 1 - 1122656 - " > ./results/cachesim_result_28887_$t.txt
./cachesim $t 64 131072 8 256 4096 1 >> ./results/cachesim_result_28887_$t.txt &
echo -n "$t 64 131072 8 512 4096 1 - 1122480 - " > ./results/cachesim_result_28888_$t.txt
./cachesim $t 64 131072 8 512 4096 1 >> ./results/cachesim_result_28888_$t.txt &
echo -n "$t 64 131072 8 1024 4096 1 - 1122392 - " > ./results/cachesim_result_28889_$t.txt
./cachesim $t 64 131072 8 1024 4096 1 >> ./results/cachesim_result_28889_$t.txt &
echo -n "$t 64 131072 8 64 4096 2 - 1123776 - " > ./results/cachesim_result_28890_$t.txt
./cachesim $t 64 131072 8 64 4096 2 >> ./results/cachesim_result_28890_$t.txt &
echo -n "$t 64 131072 8 128 4096 2 - 1123040 - " > ./results/cachesim_result_28891_$t.txt
./cachesim $t 64 131072 8 128 4096 2 >> ./results/cachesim_result_28891_$t.txt &
echo -n "$t 64 131072 8 256 4096 2 - 1122672 - " > ./results/cachesim_result_28892_$t.txt
./cachesim $t 64 131072 8 256 4096 2 >> ./results/cachesim_result_28892_$t.txt &
echo -n "$t 64 131072 8 512 4096 2 - 1122488 - " > ./results/cachesim_result_28893_$t.txt
./cachesim $t 64 131072 8 512 4096 2 >> ./results/cachesim_result_28893_$t.txt &
echo -n "$t 64 131072 8 1024 4096 2 - 1122396 - " > ./results/cachesim_result_28894_$t.txt
./cachesim $t 64 131072 8 1024 4096 2 >> ./results/cachesim_result_28894_$t.txt &
echo -n "$t 64 131072 8 64 4096 4 - 1123840 - " > ./results/cachesim_result_28895_$t.txt
./cachesim $t 64 131072 8 64 4096 4 >> ./results/cachesim_result_28895_$t.txt &
echo -n "$t 64 131072 8 128 4096 4 - 1123072 - " > ./results/cachesim_result_28896_$t.txt
./cachesim $t 64 131072 8 128 4096 4 >> ./results/cachesim_result_28896_$t.txt &
echo -n "$t 64 131072 8 256 4096 4 - 1122688 - " > ./results/cachesim_result_28897_$t.txt
./cachesim $t 64 131072 8 256 4096 4 >> ./results/cachesim_result_28897_$t.txt &
echo -n "$t 64 131072 8 512 4096 4 - 1122496 - " > ./results/cachesim_result_28898_$t.txt
./cachesim $t 64 131072 8 512 4096 4 >> ./results/cachesim_result_28898_$t.txt &
echo -n "$t 64 131072 8 1024 4096 4 - 1122400 - " > ./results/cachesim_result_28899_$t.txt
./cachesim $t 64 131072 8 1024 4096 4 >> ./results/cachesim_result_28899_$t.txt &
echo -n "$t 64 131072 8 64 4096 8 - 1123904 - " > ./results/cachesim_result_28900_$t.txt
./cachesim $t 64 131072 8 64 4096 8 >> ./results/cachesim_result_28900_$t.txt &
echo -n "$t 64 131072 8 128 4096 8 - 1123104 - " > ./results/cachesim_result_28901_$t.txt
./cachesim $t 64 131072 8 128 4096 8 >> ./results/cachesim_result_28901_$t.txt &
echo -n "$t 64 131072 8 256 4096 8 - 1122704 - " > ./results/cachesim_result_28902_$t.txt
./cachesim $t 64 131072 8 256 4096 8 >> ./results/cachesim_result_28902_$t.txt &
echo -n "$t 64 131072 8 512 4096 8 - 1122504 - " > ./results/cachesim_result_28903_$t.txt
./cachesim $t 64 131072 8 512 4096 8 >> ./results/cachesim_result_28903_$t.txt &
echo -n "$t 64 131072 8 64 4096 16 - 1123968 - " > ./results/cachesim_result_28904_$t.txt
./cachesim $t 64 131072 8 64 4096 16 >> ./results/cachesim_result_28904_$t.txt &
echo -n "$t 64 131072 8 128 4096 16 - 1123136 - " > ./results/cachesim_result_28905_$t.txt
./cachesim $t 64 131072 8 128 4096 16 >> ./results/cachesim_result_28905_$t.txt &
echo -n "$t 64 131072 8 256 4096 16 - 1122720 - " > ./results/cachesim_result_28906_$t.txt
./cachesim $t 64 131072 8 256 4096 16 >> ./results/cachesim_result_28906_$t.txt &
echo -n "$t 64 131072 8 64 4096 32 - 1124032 - " > ./results/cachesim_result_28907_$t.txt
./cachesim $t 64 131072 8 64 4096 32 >> ./results/cachesim_result_28907_$t.txt &
echo -n "$t 64 131072 8 128 4096 32 - 1123168 - " > ./results/cachesim_result_28908_$t.txt
./cachesim $t 64 131072 8 128 4096 32 >> ./results/cachesim_result_28908_$t.txt &
echo -n "$t 64 131072 8 64 8192 1 - 1157760 - " > ./results/cachesim_result_28909_$t.txt
./cachesim $t 64 131072 8 64 8192 1 >> ./results/cachesim_result_28909_$t.txt &
echo -n "$t 64 131072 8 128 8192 1 - 1156416 - " > ./results/cachesim_result_28910_$t.txt
./cachesim $t 64 131072 8 128 8192 1 >> ./results/cachesim_result_28910_$t.txt &
echo -n "$t 64 131072 8 256 8192 1 - 1155744 - " > ./results/cachesim_result_28911_$t.txt
./cachesim $t 64 131072 8 256 8192 1 >> ./results/cachesim_result_28911_$t.txt &
echo -n "$t 64 131072 8 512 8192 1 - 1155408 - " > ./results/cachesim_result_28912_$t.txt
./cachesim $t 64 131072 8 512 8192 1 >> ./results/cachesim_result_28912_$t.txt &
echo -n "$t 64 131072 8 1024 8192 1 - 1155240 - " > ./results/cachesim_result_28913_$t.txt
./cachesim $t 64 131072 8 1024 8192 1 >> ./results/cachesim_result_28913_$t.txt &
echo -n "$t 64 131072 8 64 8192 2 - 1157888 - " > ./results/cachesim_result_28914_$t.txt
./cachesim $t 64 131072 8 64 8192 2 >> ./results/cachesim_result_28914_$t.txt &
echo -n "$t 64 131072 8 128 8192 2 - 1156480 - " > ./results/cachesim_result_28915_$t.txt
./cachesim $t 64 131072 8 128 8192 2 >> ./results/cachesim_result_28915_$t.txt &
echo -n "$t 64 131072 8 256 8192 2 - 1155776 - " > ./results/cachesim_result_28916_$t.txt
./cachesim $t 64 131072 8 256 8192 2 >> ./results/cachesim_result_28916_$t.txt &
echo -n "$t 64 131072 8 512 8192 2 - 1155424 - " > ./results/cachesim_result_28917_$t.txt
./cachesim $t 64 131072 8 512 8192 2 >> ./results/cachesim_result_28917_$t.txt &
echo -n "$t 64 131072 8 1024 8192 2 - 1155248 - " > ./results/cachesim_result_28918_$t.txt
./cachesim $t 64 131072 8 1024 8192 2 >> ./results/cachesim_result_28918_$t.txt &
echo -n "$t 64 131072 8 64 8192 4 - 1158016 - " > ./results/cachesim_result_28919_$t.txt
./cachesim $t 64 131072 8 64 8192 4 >> ./results/cachesim_result_28919_$t.txt &
echo -n "$t 64 131072 8 128 8192 4 - 1156544 - " > ./results/cachesim_result_28920_$t.txt
./cachesim $t 64 131072 8 128 8192 4 >> ./results/cachesim_result_28920_$t.txt &
echo -n "$t 64 131072 8 256 8192 4 - 1155808 - " > ./results/cachesim_result_28921_$t.txt
./cachesim $t 64 131072 8 256 8192 4 >> ./results/cachesim_result_28921_$t.txt &
echo -n "$t 64 131072 8 512 8192 4 - 1155440 - " > ./results/cachesim_result_28922_$t.txt
./cachesim $t 64 131072 8 512 8192 4 >> ./results/cachesim_result_28922_$t.txt &
echo -n "$t 64 131072 8 1024 8192 4 - 1155256 - " > ./results/cachesim_result_28923_$t.txt
./cachesim $t 64 131072 8 1024 8192 4 >> ./results/cachesim_result_28923_$t.txt &
echo -n "$t 64 131072 8 64 8192 8 - 1158144 - " > ./results/cachesim_result_28924_$t.txt
./cachesim $t 64 131072 8 64 8192 8 >> ./results/cachesim_result_28924_$t.txt &
echo -n "$t 64 131072 8 128 8192 8 - 1156608 - " > ./results/cachesim_result_28925_$t.txt
./cachesim $t 64 131072 8 128 8192 8 >> ./results/cachesim_result_28925_$t.txt &
echo -n "$t 64 131072 8 256 8192 8 - 1155840 - " > ./results/cachesim_result_28926_$t.txt
./cachesim $t 64 131072 8 256 8192 8 >> ./results/cachesim_result_28926_$t.txt &
echo -n "$t 64 131072 8 512 8192 8 - 1155456 - " > ./results/cachesim_result_28927_$t.txt
./cachesim $t 64 131072 8 512 8192 8 >> ./results/cachesim_result_28927_$t.txt &
echo -n "$t 64 131072 8 1024 8192 8 - 1155264 - " > ./results/cachesim_result_28928_$t.txt
./cachesim $t 64 131072 8 1024 8192 8 >> ./results/cachesim_result_28928_$t.txt &
echo -n "$t 64 131072 8 64 8192 16 - 1158272 - " > ./results/cachesim_result_28929_$t.txt
./cachesim $t 64 131072 8 64 8192 16 >> ./results/cachesim_result_28929_$t.txt &
echo -n "$t 64 131072 8 128 8192 16 - 1156672 - " > ./results/cachesim_result_28930_$t.txt
./cachesim $t 64 131072 8 128 8192 16 >> ./results/cachesim_result_28930_$t.txt &
echo -n "$t 64 131072 8 256 8192 16 - 1155872 - " > ./results/cachesim_result_28931_$t.txt
./cachesim $t 64 131072 8 256 8192 16 >> ./results/cachesim_result_28931_$t.txt &
echo -n "$t 64 131072 8 512 8192 16 - 1155472 - " > ./results/cachesim_result_28932_$t.txt
./cachesim $t 64 131072 8 512 8192 16 >> ./results/cachesim_result_28932_$t.txt &
echo -n "$t 64 131072 8 64 8192 32 - 1158400 - " > ./results/cachesim_result_28933_$t.txt
./cachesim $t 64 131072 8 64 8192 32 >> ./results/cachesim_result_28933_$t.txt &
echo -n "$t 64 131072 8 128 8192 32 - 1156736 - " > ./results/cachesim_result_28934_$t.txt
./cachesim $t 64 131072 8 128 8192 32 >> ./results/cachesim_result_28934_$t.txt &
echo -n "$t 64 131072 8 256 8192 32 - 1155904 - " > ./results/cachesim_result_28935_$t.txt
./cachesim $t 64 131072 8 256 8192 32 >> ./results/cachesim_result_28935_$t.txt &
echo -n "$t 64 131072 8 64 16384 1 - 1225728 - " > ./results/cachesim_result_28936_$t.txt
./cachesim $t 64 131072 8 64 16384 1 >> ./results/cachesim_result_28936_$t.txt &
echo -n "$t 64 131072 8 128 16384 1 - 1223168 - " > ./results/cachesim_result_28937_$t.txt
./cachesim $t 64 131072 8 128 16384 1 >> ./results/cachesim_result_28937_$t.txt &
echo -n "$t 64 131072 8 256 16384 1 - 1221888 - " > ./results/cachesim_result_28938_$t.txt
./cachesim $t 64 131072 8 256 16384 1 >> ./results/cachesim_result_28938_$t.txt &
echo -n "$t 64 131072 8 512 16384 1 - 1221248 - " > ./results/cachesim_result_28939_$t.txt
./cachesim $t 64 131072 8 512 16384 1 >> ./results/cachesim_result_28939_$t.txt &
echo -n "$t 64 131072 8 1024 16384 1 - 1220928 - " > ./results/cachesim_result_28940_$t.txt
./cachesim $t 64 131072 8 1024 16384 1 >> ./results/cachesim_result_28940_$t.txt &
echo -n "$t 64 131072 8 64 16384 2 - 1225984 - " > ./results/cachesim_result_28941_$t.txt
./cachesim $t 64 131072 8 64 16384 2 >> ./results/cachesim_result_28941_$t.txt &
echo -n "$t 64 131072 8 128 16384 2 - 1223296 - " > ./results/cachesim_result_28942_$t.txt
./cachesim $t 64 131072 8 128 16384 2 >> ./results/cachesim_result_28942_$t.txt &
echo -n "$t 64 131072 8 256 16384 2 - 1221952 - " > ./results/cachesim_result_28943_$t.txt
./cachesim $t 64 131072 8 256 16384 2 >> ./results/cachesim_result_28943_$t.txt &
echo -n "$t 64 131072 8 512 16384 2 - 1221280 - " > ./results/cachesim_result_28944_$t.txt
./cachesim $t 64 131072 8 512 16384 2 >> ./results/cachesim_result_28944_$t.txt &
echo -n "$t 64 131072 8 1024 16384 2 - 1220944 - " > ./results/cachesim_result_28945_$t.txt
./cachesim $t 64 131072 8 1024 16384 2 >> ./results/cachesim_result_28945_$t.txt &
echo -n "$t 64 131072 8 64 16384 4 - 1226240 - " > ./results/cachesim_result_28946_$t.txt
./cachesim $t 64 131072 8 64 16384 4 >> ./results/cachesim_result_28946_$t.txt &
echo -n "$t 64 131072 8 128 16384 4 - 1223424 - " > ./results/cachesim_result_28947_$t.txt
./cachesim $t 64 131072 8 128 16384 4 >> ./results/cachesim_result_28947_$t.txt &
echo -n "$t 64 131072 8 256 16384 4 - 1222016 - " > ./results/cachesim_result_28948_$t.txt
./cachesim $t 64 131072 8 256 16384 4 >> ./results/cachesim_result_28948_$t.txt &
echo -n "$t 64 131072 8 512 16384 4 - 1221312 - " > ./results/cachesim_result_28949_$t.txt
./cachesim $t 64 131072 8 512 16384 4 >> ./results/cachesim_result_28949_$t.txt &
echo -n "$t 64 131072 8 1024 16384 4 - 1220960 - " > ./results/cachesim_result_28950_$t.txt
./cachesim $t 64 131072 8 1024 16384 4 >> ./results/cachesim_result_28950_$t.txt &
echo -n "$t 64 131072 8 64 16384 8 - 1226496 - " > ./results/cachesim_result_28951_$t.txt
./cachesim $t 64 131072 8 64 16384 8 >> ./results/cachesim_result_28951_$t.txt &
echo -n "$t 64 131072 8 128 16384 8 - 1223552 - " > ./results/cachesim_result_28952_$t.txt
./cachesim $t 64 131072 8 128 16384 8 >> ./results/cachesim_result_28952_$t.txt &
echo -n "$t 64 131072 8 256 16384 8 - 1222080 - " > ./results/cachesim_result_28953_$t.txt
./cachesim $t 64 131072 8 256 16384 8 >> ./results/cachesim_result_28953_$t.txt &
echo -n "$t 64 131072 8 512 16384 8 - 1221344 - " > ./results/cachesim_result_28954_$t.txt
./cachesim $t 64 131072 8 512 16384 8 >> ./results/cachesim_result_28954_$t.txt &
echo -n "$t 64 131072 8 1024 16384 8 - 1220976 - " > ./results/cachesim_result_28955_$t.txt
./cachesim $t 64 131072 8 1024 16384 8 >> ./results/cachesim_result_28955_$t.txt &
echo -n "$t 64 131072 8 64 16384 16 - 1226752 - " > ./results/cachesim_result_28956_$t.txt
./cachesim $t 64 131072 8 64 16384 16 >> ./results/cachesim_result_28956_$t.txt &
echo -n "$t 64 131072 8 128 16384 16 - 1223680 - " > ./results/cachesim_result_28957_$t.txt
./cachesim $t 64 131072 8 128 16384 16 >> ./results/cachesim_result_28957_$t.txt &
echo -n "$t 64 131072 8 256 16384 16 - 1222144 - " > ./results/cachesim_result_28958_$t.txt
./cachesim $t 64 131072 8 256 16384 16 >> ./results/cachesim_result_28958_$t.txt &
echo -n "$t 64 131072 8 512 16384 16 - 1221376 - " > ./results/cachesim_result_28959_$t.txt
./cachesim $t 64 131072 8 512 16384 16 >> ./results/cachesim_result_28959_$t.txt &
echo -n "$t 64 131072 8 1024 16384 16 - 1220992 - " > ./results/cachesim_result_28960_$t.txt
./cachesim $t 64 131072 8 1024 16384 16 >> ./results/cachesim_result_28960_$t.txt &
echo -n "$t 64 131072 8 64 16384 32 - 1227008 - " > ./results/cachesim_result_28961_$t.txt
./cachesim $t 64 131072 8 64 16384 32 >> ./results/cachesim_result_28961_$t.txt &
echo -n "$t 64 131072 8 128 16384 32 - 1223808 - " > ./results/cachesim_result_28962_$t.txt
./cachesim $t 64 131072 8 128 16384 32 >> ./results/cachesim_result_28962_$t.txt &
echo -n "$t 64 131072 8 256 16384 32 - 1222208 - " > ./results/cachesim_result_28963_$t.txt
./cachesim $t 64 131072 8 256 16384 32 >> ./results/cachesim_result_28963_$t.txt &
echo -n "$t 64 131072 8 512 16384 32 - 1221408 - " > ./results/cachesim_result_28964_$t.txt
./cachesim $t 64 131072 8 512 16384 32 >> ./results/cachesim_result_28964_$t.txt &
echo -n "$t 64 131072 8 64 32768 1 - 1361408 - " > ./results/cachesim_result_28965_$t.txt
./cachesim $t 64 131072 8 64 32768 1 >> ./results/cachesim_result_28965_$t.txt &
echo -n "$t 64 131072 8 128 32768 1 - 1356544 - " > ./results/cachesim_result_28966_$t.txt
./cachesim $t 64 131072 8 128 32768 1 >> ./results/cachesim_result_28966_$t.txt &
echo -n "$t 64 131072 8 256 32768 1 - 1354112 - " > ./results/cachesim_result_28967_$t.txt
./cachesim $t 64 131072 8 256 32768 1 >> ./results/cachesim_result_28967_$t.txt &
echo -n "$t 64 131072 8 512 32768 1 - 1352896 - " > ./results/cachesim_result_28968_$t.txt
./cachesim $t 64 131072 8 512 32768 1 >> ./results/cachesim_result_28968_$t.txt &
echo -n "$t 64 131072 8 1024 32768 1 - 1352288 - " > ./results/cachesim_result_28969_$t.txt
./cachesim $t 64 131072 8 1024 32768 1 >> ./results/cachesim_result_28969_$t.txt &
echo -n "$t 64 131072 8 64 32768 2 - 1361920 - " > ./results/cachesim_result_28970_$t.txt
./cachesim $t 64 131072 8 64 32768 2 >> ./results/cachesim_result_28970_$t.txt &
echo -n "$t 64 131072 8 128 32768 2 - 1356800 - " > ./results/cachesim_result_28971_$t.txt
./cachesim $t 64 131072 8 128 32768 2 >> ./results/cachesim_result_28971_$t.txt &
echo -n "$t 64 131072 8 256 32768 2 - 1354240 - " > ./results/cachesim_result_28972_$t.txt
./cachesim $t 64 131072 8 256 32768 2 >> ./results/cachesim_result_28972_$t.txt &
echo -n "$t 64 131072 8 512 32768 2 - 1352960 - " > ./results/cachesim_result_28973_$t.txt
./cachesim $t 64 131072 8 512 32768 2 >> ./results/cachesim_result_28973_$t.txt &
echo -n "$t 64 131072 8 1024 32768 2 - 1352320 - " > ./results/cachesim_result_28974_$t.txt
./cachesim $t 64 131072 8 1024 32768 2 >> ./results/cachesim_result_28974_$t.txt &
echo -n "$t 64 131072 8 64 32768 4 - 1362432 - " > ./results/cachesim_result_28975_$t.txt
./cachesim $t 64 131072 8 64 32768 4 >> ./results/cachesim_result_28975_$t.txt &
echo -n "$t 64 131072 8 128 32768 4 - 1357056 - " > ./results/cachesim_result_28976_$t.txt
./cachesim $t 64 131072 8 128 32768 4 >> ./results/cachesim_result_28976_$t.txt &
echo -n "$t 64 131072 8 256 32768 4 - 1354368 - " > ./results/cachesim_result_28977_$t.txt
./cachesim $t 64 131072 8 256 32768 4 >> ./results/cachesim_result_28977_$t.txt &
echo -n "$t 64 131072 8 512 32768 4 - 1353024 - " > ./results/cachesim_result_28978_$t.txt
./cachesim $t 64 131072 8 512 32768 4 >> ./results/cachesim_result_28978_$t.txt &
echo -n "$t 64 131072 8 1024 32768 4 - 1352352 - " > ./results/cachesim_result_28979_$t.txt
./cachesim $t 64 131072 8 1024 32768 4 >> ./results/cachesim_result_28979_$t.txt &
echo -n "$t 64 131072 8 64 32768 8 - 1362944 - " > ./results/cachesim_result_28980_$t.txt
./cachesim $t 64 131072 8 64 32768 8 >> ./results/cachesim_result_28980_$t.txt &
echo -n "$t 64 131072 8 128 32768 8 - 1357312 - " > ./results/cachesim_result_28981_$t.txt
./cachesim $t 64 131072 8 128 32768 8 >> ./results/cachesim_result_28981_$t.txt &
echo -n "$t 64 131072 8 256 32768 8 - 1354496 - " > ./results/cachesim_result_28982_$t.txt
./cachesim $t 64 131072 8 256 32768 8 >> ./results/cachesim_result_28982_$t.txt &
echo -n "$t 64 131072 8 512 32768 8 - 1353088 - " > ./results/cachesim_result_28983_$t.txt
./cachesim $t 64 131072 8 512 32768 8 >> ./results/cachesim_result_28983_$t.txt &
echo -n "$t 64 131072 8 1024 32768 8 - 1352384 - " > ./results/cachesim_result_28984_$t.txt
./cachesim $t 64 131072 8 1024 32768 8 >> ./results/cachesim_result_28984_$t.txt &
echo -n "$t 64 131072 8 64 32768 16 - 1363456 - " > ./results/cachesim_result_28985_$t.txt
./cachesim $t 64 131072 8 64 32768 16 >> ./results/cachesim_result_28985_$t.txt &
echo -n "$t 64 131072 8 128 32768 16 - 1357568 - " > ./results/cachesim_result_28986_$t.txt
./cachesim $t 64 131072 8 128 32768 16 >> ./results/cachesim_result_28986_$t.txt &
echo -n "$t 64 131072 8 256 32768 16 - 1354624 - " > ./results/cachesim_result_28987_$t.txt
./cachesim $t 64 131072 8 256 32768 16 >> ./results/cachesim_result_28987_$t.txt &
echo -n "$t 64 131072 8 512 32768 16 - 1353152 - " > ./results/cachesim_result_28988_$t.txt
./cachesim $t 64 131072 8 512 32768 16 >> ./results/cachesim_result_28988_$t.txt &
echo -n "$t 64 131072 8 1024 32768 16 - 1352416 - " > ./results/cachesim_result_28989_$t.txt
./cachesim $t 64 131072 8 1024 32768 16 >> ./results/cachesim_result_28989_$t.txt &
echo -n "$t 64 131072 8 64 32768 32 - 1363968 - " > ./results/cachesim_result_28990_$t.txt
./cachesim $t 64 131072 8 64 32768 32 >> ./results/cachesim_result_28990_$t.txt &
echo -n "$t 64 131072 8 128 32768 32 - 1357824 - " > ./results/cachesim_result_28991_$t.txt
./cachesim $t 64 131072 8 128 32768 32 >> ./results/cachesim_result_28991_$t.txt &
echo -n "$t 64 131072 8 256 32768 32 - 1354752 - " > ./results/cachesim_result_28992_$t.txt
./cachesim $t 64 131072 8 256 32768 32 >> ./results/cachesim_result_28992_$t.txt &
echo -n "$t 64 131072 8 512 32768 32 - 1353216 - " > ./results/cachesim_result_28993_$t.txt
./cachesim $t 64 131072 8 512 32768 32 >> ./results/cachesim_result_28993_$t.txt &
echo -n "$t 64 131072 8 1024 32768 32 - 1352448 - " > ./results/cachesim_result_28994_$t.txt
./cachesim $t 64 131072 8 1024 32768 32 >> ./results/cachesim_result_28994_$t.txt &
echo -n "$t 128 131072 8 128 4096 1 - 1102528 - " > ./results/cachesim_result_28995_$t.txt
./cachesim $t 128 131072 8 128 4096 1 >> ./results/cachesim_result_28995_$t.txt &
echo -n "$t 128 131072 8 256 4096 1 - 1102176 - " > ./results/cachesim_result_28996_$t.txt
./cachesim $t 128 131072 8 256 4096 1 >> ./results/cachesim_result_28996_$t.txt &
echo -n "$t 128 131072 8 512 4096 1 - 1102000 - " > ./results/cachesim_result_28997_$t.txt
./cachesim $t 128 131072 8 512 4096 1 >> ./results/cachesim_result_28997_$t.txt &
echo -n "$t 128 131072 8 1024 4096 1 - 1101912 - " > ./results/cachesim_result_28998_$t.txt
./cachesim $t 128 131072 8 1024 4096 1 >> ./results/cachesim_result_28998_$t.txt &
echo -n "$t 128 131072 8 128 4096 2 - 1102560 - " > ./results/cachesim_result_28999_$t.txt
./cachesim $t 128 131072 8 128 4096 2 >> ./results/cachesim_result_28999_$t.txt &
echo -n "$t 128 131072 8 256 4096 2 - 1102192 - " > ./results/cachesim_result_29000_$t.txt
./cachesim $t 128 131072 8 256 4096 2 >> ./results/cachesim_result_29000_$t.txt &
echo -n "$t 128 131072 8 512 4096 2 - 1102008 - " > ./results/cachesim_result_29001_$t.txt
./cachesim $t 128 131072 8 512 4096 2 >> ./results/cachesim_result_29001_$t.txt &
echo -n "$t 128 131072 8 1024 4096 2 - 1101916 - " > ./results/cachesim_result_29002_$t.txt
./cachesim $t 128 131072 8 1024 4096 2 >> ./results/cachesim_result_29002_$t.txt &
echo -n "$t 128 131072 8 128 4096 4 - 1102592 - " > ./results/cachesim_result_29003_$t.txt
./cachesim $t 128 131072 8 128 4096 4 >> ./results/cachesim_result_29003_$t.txt &
echo -n "$t 128 131072 8 256 4096 4 - 1102208 - " > ./results/cachesim_result_29004_$t.txt
./cachesim $t 128 131072 8 256 4096 4 >> ./results/cachesim_result_29004_$t.txt &
echo -n "$t 128 131072 8 512 4096 4 - 1102016 - " > ./results/cachesim_result_29005_$t.txt
./cachesim $t 128 131072 8 512 4096 4 >> ./results/cachesim_result_29005_$t.txt &
echo -n "$t 128 131072 8 1024 4096 4 - 1101920 - " > ./results/cachesim_result_29006_$t.txt
./cachesim $t 128 131072 8 1024 4096 4 >> ./results/cachesim_result_29006_$t.txt &
echo -n "$t 128 131072 8 128 4096 8 - 1102624 - " > ./results/cachesim_result_29007_$t.txt
./cachesim $t 128 131072 8 128 4096 8 >> ./results/cachesim_result_29007_$t.txt &
echo -n "$t 128 131072 8 256 4096 8 - 1102224 - " > ./results/cachesim_result_29008_$t.txt
./cachesim $t 128 131072 8 256 4096 8 >> ./results/cachesim_result_29008_$t.txt &
echo -n "$t 128 131072 8 512 4096 8 - 1102024 - " > ./results/cachesim_result_29009_$t.txt
./cachesim $t 128 131072 8 512 4096 8 >> ./results/cachesim_result_29009_$t.txt &
echo -n "$t 128 131072 8 128 4096 16 - 1102656 - " > ./results/cachesim_result_29010_$t.txt
./cachesim $t 128 131072 8 128 4096 16 >> ./results/cachesim_result_29010_$t.txt &
echo -n "$t 128 131072 8 256 4096 16 - 1102240 - " > ./results/cachesim_result_29011_$t.txt
./cachesim $t 128 131072 8 256 4096 16 >> ./results/cachesim_result_29011_$t.txt &
echo -n "$t 128 131072 8 128 4096 32 - 1102688 - " > ./results/cachesim_result_29012_$t.txt
./cachesim $t 128 131072 8 128 4096 32 >> ./results/cachesim_result_29012_$t.txt &
echo -n "$t 128 131072 8 128 8192 1 - 1135936 - " > ./results/cachesim_result_29013_$t.txt
./cachesim $t 128 131072 8 128 8192 1 >> ./results/cachesim_result_29013_$t.txt &
echo -n "$t 128 131072 8 256 8192 1 - 1135264 - " > ./results/cachesim_result_29014_$t.txt
./cachesim $t 128 131072 8 256 8192 1 >> ./results/cachesim_result_29014_$t.txt &
echo -n "$t 128 131072 8 512 8192 1 - 1134928 - " > ./results/cachesim_result_29015_$t.txt
./cachesim $t 128 131072 8 512 8192 1 >> ./results/cachesim_result_29015_$t.txt &
echo -n "$t 128 131072 8 1024 8192 1 - 1134760 - " > ./results/cachesim_result_29016_$t.txt
./cachesim $t 128 131072 8 1024 8192 1 >> ./results/cachesim_result_29016_$t.txt &
echo -n "$t 128 131072 8 128 8192 2 - 1136000 - " > ./results/cachesim_result_29017_$t.txt
./cachesim $t 128 131072 8 128 8192 2 >> ./results/cachesim_result_29017_$t.txt &
echo -n "$t 128 131072 8 256 8192 2 - 1135296 - " > ./results/cachesim_result_29018_$t.txt
./cachesim $t 128 131072 8 256 8192 2 >> ./results/cachesim_result_29018_$t.txt &
echo -n "$t 128 131072 8 512 8192 2 - 1134944 - " > ./results/cachesim_result_29019_$t.txt
./cachesim $t 128 131072 8 512 8192 2 >> ./results/cachesim_result_29019_$t.txt &
echo -n "$t 128 131072 8 1024 8192 2 - 1134768 - " > ./results/cachesim_result_29020_$t.txt
./cachesim $t 128 131072 8 1024 8192 2 >> ./results/cachesim_result_29020_$t.txt &
echo -n "$t 128 131072 8 128 8192 4 - 1136064 - " > ./results/cachesim_result_29021_$t.txt
./cachesim $t 128 131072 8 128 8192 4 >> ./results/cachesim_result_29021_$t.txt &
echo -n "$t 128 131072 8 256 8192 4 - 1135328 - " > ./results/cachesim_result_29022_$t.txt
./cachesim $t 128 131072 8 256 8192 4 >> ./results/cachesim_result_29022_$t.txt &
echo -n "$t 128 131072 8 512 8192 4 - 1134960 - " > ./results/cachesim_result_29023_$t.txt
./cachesim $t 128 131072 8 512 8192 4 >> ./results/cachesim_result_29023_$t.txt &
echo -n "$t 128 131072 8 1024 8192 4 - 1134776 - " > ./results/cachesim_result_29024_$t.txt
./cachesim $t 128 131072 8 1024 8192 4 >> ./results/cachesim_result_29024_$t.txt &
echo -n "$t 128 131072 8 128 8192 8 - 1136128 - " > ./results/cachesim_result_29025_$t.txt
./cachesim $t 128 131072 8 128 8192 8 >> ./results/cachesim_result_29025_$t.txt &
echo -n "$t 128 131072 8 256 8192 8 - 1135360 - " > ./results/cachesim_result_29026_$t.txt
./cachesim $t 128 131072 8 256 8192 8 >> ./results/cachesim_result_29026_$t.txt &
echo -n "$t 128 131072 8 512 8192 8 - 1134976 - " > ./results/cachesim_result_29027_$t.txt
./cachesim $t 128 131072 8 512 8192 8 >> ./results/cachesim_result_29027_$t.txt &
echo -n "$t 128 131072 8 1024 8192 8 - 1134784 - " > ./results/cachesim_result_29028_$t.txt
./cachesim $t 128 131072 8 1024 8192 8 >> ./results/cachesim_result_29028_$t.txt &
echo -n "$t 128 131072 8 128 8192 16 - 1136192 - " > ./results/cachesim_result_29029_$t.txt
./cachesim $t 128 131072 8 128 8192 16 >> ./results/cachesim_result_29029_$t.txt &
echo -n "$t 128 131072 8 256 8192 16 - 1135392 - " > ./results/cachesim_result_29030_$t.txt
./cachesim $t 128 131072 8 256 8192 16 >> ./results/cachesim_result_29030_$t.txt &
echo -n "$t 128 131072 8 512 8192 16 - 1134992 - " > ./results/cachesim_result_29031_$t.txt
./cachesim $t 128 131072 8 512 8192 16 >> ./results/cachesim_result_29031_$t.txt &
echo -n "$t 128 131072 8 128 8192 32 - 1136256 - " > ./results/cachesim_result_29032_$t.txt
./cachesim $t 128 131072 8 128 8192 32 >> ./results/cachesim_result_29032_$t.txt &
echo -n "$t 128 131072 8 256 8192 32 - 1135424 - " > ./results/cachesim_result_29033_$t.txt
./cachesim $t 128 131072 8 256 8192 32 >> ./results/cachesim_result_29033_$t.txt &
echo -n "$t 128 131072 8 128 16384 1 - 1202688 - " > ./results/cachesim_result_29034_$t.txt
./cachesim $t 128 131072 8 128 16384 1 >> ./results/cachesim_result_29034_$t.txt &
echo -n "$t 128 131072 8 256 16384 1 - 1201408 - " > ./results/cachesim_result_29035_$t.txt
./cachesim $t 128 131072 8 256 16384 1 >> ./results/cachesim_result_29035_$t.txt &
echo -n "$t 128 131072 8 512 16384 1 - 1200768 - " > ./results/cachesim_result_29036_$t.txt
./cachesim $t 128 131072 8 512 16384 1 >> ./results/cachesim_result_29036_$t.txt &
echo -n "$t 128 131072 8 1024 16384 1 - 1200448 - " > ./results/cachesim_result_29037_$t.txt
./cachesim $t 128 131072 8 1024 16384 1 >> ./results/cachesim_result_29037_$t.txt &
echo -n "$t 128 131072 8 128 16384 2 - 1202816 - " > ./results/cachesim_result_29038_$t.txt
./cachesim $t 128 131072 8 128 16384 2 >> ./results/cachesim_result_29038_$t.txt &
echo -n "$t 128 131072 8 256 16384 2 - 1201472 - " > ./results/cachesim_result_29039_$t.txt
./cachesim $t 128 131072 8 256 16384 2 >> ./results/cachesim_result_29039_$t.txt &
echo -n "$t 128 131072 8 512 16384 2 - 1200800 - " > ./results/cachesim_result_29040_$t.txt
./cachesim $t 128 131072 8 512 16384 2 >> ./results/cachesim_result_29040_$t.txt &
echo -n "$t 128 131072 8 1024 16384 2 - 1200464 - " > ./results/cachesim_result_29041_$t.txt
./cachesim $t 128 131072 8 1024 16384 2 >> ./results/cachesim_result_29041_$t.txt &
echo -n "$t 128 131072 8 128 16384 4 - 1202944 - " > ./results/cachesim_result_29042_$t.txt
./cachesim $t 128 131072 8 128 16384 4 >> ./results/cachesim_result_29042_$t.txt &
echo -n "$t 128 131072 8 256 16384 4 - 1201536 - " > ./results/cachesim_result_29043_$t.txt
./cachesim $t 128 131072 8 256 16384 4 >> ./results/cachesim_result_29043_$t.txt &
echo -n "$t 128 131072 8 512 16384 4 - 1200832 - " > ./results/cachesim_result_29044_$t.txt
./cachesim $t 128 131072 8 512 16384 4 >> ./results/cachesim_result_29044_$t.txt &
echo -n "$t 128 131072 8 1024 16384 4 - 1200480 - " > ./results/cachesim_result_29045_$t.txt
./cachesim $t 128 131072 8 1024 16384 4 >> ./results/cachesim_result_29045_$t.txt &
echo -n "$t 128 131072 8 128 16384 8 - 1203072 - " > ./results/cachesim_result_29046_$t.txt
./cachesim $t 128 131072 8 128 16384 8 >> ./results/cachesim_result_29046_$t.txt &
echo -n "$t 128 131072 8 256 16384 8 - 1201600 - " > ./results/cachesim_result_29047_$t.txt
./cachesim $t 128 131072 8 256 16384 8 >> ./results/cachesim_result_29047_$t.txt &
echo -n "$t 128 131072 8 512 16384 8 - 1200864 - " > ./results/cachesim_result_29048_$t.txt
./cachesim $t 128 131072 8 512 16384 8 >> ./results/cachesim_result_29048_$t.txt &
echo -n "$t 128 131072 8 1024 16384 8 - 1200496 - " > ./results/cachesim_result_29049_$t.txt
./cachesim $t 128 131072 8 1024 16384 8 >> ./results/cachesim_result_29049_$t.txt &
echo -n "$t 128 131072 8 128 16384 16 - 1203200 - " > ./results/cachesim_result_29050_$t.txt
./cachesim $t 128 131072 8 128 16384 16 >> ./results/cachesim_result_29050_$t.txt &
echo -n "$t 128 131072 8 256 16384 16 - 1201664 - " > ./results/cachesim_result_29051_$t.txt
./cachesim $t 128 131072 8 256 16384 16 >> ./results/cachesim_result_29051_$t.txt &
echo -n "$t 128 131072 8 512 16384 16 - 1200896 - " > ./results/cachesim_result_29052_$t.txt
./cachesim $t 128 131072 8 512 16384 16 >> ./results/cachesim_result_29052_$t.txt &
echo -n "$t 128 131072 8 1024 16384 16 - 1200512 - " > ./results/cachesim_result_29053_$t.txt
./cachesim $t 128 131072 8 1024 16384 16 >> ./results/cachesim_result_29053_$t.txt &
echo -n "$t 128 131072 8 128 16384 32 - 1203328 - " > ./results/cachesim_result_29054_$t.txt
./cachesim $t 128 131072 8 128 16384 32 >> ./results/cachesim_result_29054_$t.txt &
echo -n "$t 128 131072 8 256 16384 32 - 1201728 - " > ./results/cachesim_result_29055_$t.txt
./cachesim $t 128 131072 8 256 16384 32 >> ./results/cachesim_result_29055_$t.txt &
echo -n "$t 128 131072 8 512 16384 32 - 1200928 - " > ./results/cachesim_result_29056_$t.txt
./cachesim $t 128 131072 8 512 16384 32 >> ./results/cachesim_result_29056_$t.txt &
echo -n "$t 128 131072 8 128 32768 1 - 1336064 - " > ./results/cachesim_result_29057_$t.txt
./cachesim $t 128 131072 8 128 32768 1 >> ./results/cachesim_result_29057_$t.txt &
echo -n "$t 128 131072 8 256 32768 1 - 1333632 - " > ./results/cachesim_result_29058_$t.txt
./cachesim $t 128 131072 8 256 32768 1 >> ./results/cachesim_result_29058_$t.txt &
echo -n "$t 128 131072 8 512 32768 1 - 1332416 - " > ./results/cachesim_result_29059_$t.txt
./cachesim $t 128 131072 8 512 32768 1 >> ./results/cachesim_result_29059_$t.txt &
echo -n "$t 128 131072 8 1024 32768 1 - 1331808 - " > ./results/cachesim_result_29060_$t.txt
./cachesim $t 128 131072 8 1024 32768 1 >> ./results/cachesim_result_29060_$t.txt &
echo -n "$t 128 131072 8 128 32768 2 - 1336320 - " > ./results/cachesim_result_29061_$t.txt
./cachesim $t 128 131072 8 128 32768 2 >> ./results/cachesim_result_29061_$t.txt &
echo -n "$t 128 131072 8 256 32768 2 - 1333760 - " > ./results/cachesim_result_29062_$t.txt
./cachesim $t 128 131072 8 256 32768 2 >> ./results/cachesim_result_29062_$t.txt &
echo -n "$t 128 131072 8 512 32768 2 - 1332480 - " > ./results/cachesim_result_29063_$t.txt
./cachesim $t 128 131072 8 512 32768 2 >> ./results/cachesim_result_29063_$t.txt &
echo -n "$t 128 131072 8 1024 32768 2 - 1331840 - " > ./results/cachesim_result_29064_$t.txt
./cachesim $t 128 131072 8 1024 32768 2 >> ./results/cachesim_result_29064_$t.txt &
echo -n "$t 128 131072 8 128 32768 4 - 1336576 - " > ./results/cachesim_result_29065_$t.txt
./cachesim $t 128 131072 8 128 32768 4 >> ./results/cachesim_result_29065_$t.txt &
echo -n "$t 128 131072 8 256 32768 4 - 1333888 - " > ./results/cachesim_result_29066_$t.txt
./cachesim $t 128 131072 8 256 32768 4 >> ./results/cachesim_result_29066_$t.txt &
echo -n "$t 128 131072 8 512 32768 4 - 1332544 - " > ./results/cachesim_result_29067_$t.txt
./cachesim $t 128 131072 8 512 32768 4 >> ./results/cachesim_result_29067_$t.txt &
echo -n "$t 128 131072 8 1024 32768 4 - 1331872 - " > ./results/cachesim_result_29068_$t.txt
./cachesim $t 128 131072 8 1024 32768 4 >> ./results/cachesim_result_29068_$t.txt &
echo -n "$t 128 131072 8 128 32768 8 - 1336832 - " > ./results/cachesim_result_29069_$t.txt
./cachesim $t 128 131072 8 128 32768 8 >> ./results/cachesim_result_29069_$t.txt &
echo -n "$t 128 131072 8 256 32768 8 - 1334016 - " > ./results/cachesim_result_29070_$t.txt
./cachesim $t 128 131072 8 256 32768 8 >> ./results/cachesim_result_29070_$t.txt &
echo -n "$t 128 131072 8 512 32768 8 - 1332608 - " > ./results/cachesim_result_29071_$t.txt
./cachesim $t 128 131072 8 512 32768 8 >> ./results/cachesim_result_29071_$t.txt &
echo -n "$t 128 131072 8 1024 32768 8 - 1331904 - " > ./results/cachesim_result_29072_$t.txt
./cachesim $t 128 131072 8 1024 32768 8 >> ./results/cachesim_result_29072_$t.txt &
echo -n "$t 128 131072 8 128 32768 16 - 1337088 - " > ./results/cachesim_result_29073_$t.txt
./cachesim $t 128 131072 8 128 32768 16 >> ./results/cachesim_result_29073_$t.txt &
echo -n "$t 128 131072 8 256 32768 16 - 1334144 - " > ./results/cachesim_result_29074_$t.txt
./cachesim $t 128 131072 8 256 32768 16 >> ./results/cachesim_result_29074_$t.txt &
echo -n "$t 128 131072 8 512 32768 16 - 1332672 - " > ./results/cachesim_result_29075_$t.txt
./cachesim $t 128 131072 8 512 32768 16 >> ./results/cachesim_result_29075_$t.txt &
echo -n "$t 128 131072 8 1024 32768 16 - 1331936 - " > ./results/cachesim_result_29076_$t.txt
./cachesim $t 128 131072 8 1024 32768 16 >> ./results/cachesim_result_29076_$t.txt &
echo -n "$t 128 131072 8 128 32768 32 - 1337344 - " > ./results/cachesim_result_29077_$t.txt
./cachesim $t 128 131072 8 128 32768 32 >> ./results/cachesim_result_29077_$t.txt &
echo -n "$t 128 131072 8 256 32768 32 - 1334272 - " > ./results/cachesim_result_29078_$t.txt
./cachesim $t 128 131072 8 256 32768 32 >> ./results/cachesim_result_29078_$t.txt &
echo -n "$t 128 131072 8 512 32768 32 - 1332736 - " > ./results/cachesim_result_29079_$t.txt
./cachesim $t 128 131072 8 512 32768 32 >> ./results/cachesim_result_29079_$t.txt &
echo -n "$t 128 131072 8 1024 32768 32 - 1331968 - " > ./results/cachesim_result_29080_$t.txt
./cachesim $t 128 131072 8 1024 32768 32 >> ./results/cachesim_result_29080_$t.txt &
echo -n "$t 256 131072 8 256 4096 1 - 1091936 - " > ./results/cachesim_result_29081_$t.txt
./cachesim $t 256 131072 8 256 4096 1 >> ./results/cachesim_result_29081_$t.txt &
echo -n "$t 256 131072 8 512 4096 1 - 1091760 - " > ./results/cachesim_result_29082_$t.txt
./cachesim $t 256 131072 8 512 4096 1 >> ./results/cachesim_result_29082_$t.txt &
echo -n "$t 256 131072 8 1024 4096 1 - 1091672 - " > ./results/cachesim_result_29083_$t.txt
./cachesim $t 256 131072 8 1024 4096 1 >> ./results/cachesim_result_29083_$t.txt &
echo -n "$t 256 131072 8 256 4096 2 - 1091952 - " > ./results/cachesim_result_29084_$t.txt
./cachesim $t 256 131072 8 256 4096 2 >> ./results/cachesim_result_29084_$t.txt &
echo -n "$t 256 131072 8 512 4096 2 - 1091768 - " > ./results/cachesim_result_29085_$t.txt
./cachesim $t 256 131072 8 512 4096 2 >> ./results/cachesim_result_29085_$t.txt &
echo -n "$t 256 131072 8 1024 4096 2 - 1091676 - " > ./results/cachesim_result_29086_$t.txt
./cachesim $t 256 131072 8 1024 4096 2 >> ./results/cachesim_result_29086_$t.txt &
echo -n "$t 256 131072 8 256 4096 4 - 1091968 - " > ./results/cachesim_result_29087_$t.txt
./cachesim $t 256 131072 8 256 4096 4 >> ./results/cachesim_result_29087_$t.txt &
echo -n "$t 256 131072 8 512 4096 4 - 1091776 - " > ./results/cachesim_result_29088_$t.txt
./cachesim $t 256 131072 8 512 4096 4 >> ./results/cachesim_result_29088_$t.txt &
echo -n "$t 256 131072 8 1024 4096 4 - 1091680 - " > ./results/cachesim_result_29089_$t.txt
./cachesim $t 256 131072 8 1024 4096 4 >> ./results/cachesim_result_29089_$t.txt &
echo -n "$t 256 131072 8 256 4096 8 - 1091984 - " > ./results/cachesim_result_29090_$t.txt
./cachesim $t 256 131072 8 256 4096 8 >> ./results/cachesim_result_29090_$t.txt &
echo -n "$t 256 131072 8 512 4096 8 - 1091784 - " > ./results/cachesim_result_29091_$t.txt
./cachesim $t 256 131072 8 512 4096 8 >> ./results/cachesim_result_29091_$t.txt &
echo -n "$t 256 131072 8 256 4096 16 - 1092000 - " > ./results/cachesim_result_29092_$t.txt
./cachesim $t 256 131072 8 256 4096 16 >> ./results/cachesim_result_29092_$t.txt &
echo -n "$t 256 131072 8 256 8192 1 - 1125024 - " > ./results/cachesim_result_29093_$t.txt
./cachesim $t 256 131072 8 256 8192 1 >> ./results/cachesim_result_29093_$t.txt &
echo -n "$t 256 131072 8 512 8192 1 - 1124688 - " > ./results/cachesim_result_29094_$t.txt
./cachesim $t 256 131072 8 512 8192 1 >> ./results/cachesim_result_29094_$t.txt &
echo -n "$t 256 131072 8 1024 8192 1 - 1124520 - " > ./results/cachesim_result_29095_$t.txt
./cachesim $t 256 131072 8 1024 8192 1 >> ./results/cachesim_result_29095_$t.txt &
echo -n "$t 256 131072 8 256 8192 2 - 1125056 - " > ./results/cachesim_result_29096_$t.txt
./cachesim $t 256 131072 8 256 8192 2 >> ./results/cachesim_result_29096_$t.txt &
echo -n "$t 256 131072 8 512 8192 2 - 1124704 - " > ./results/cachesim_result_29097_$t.txt
./cachesim $t 256 131072 8 512 8192 2 >> ./results/cachesim_result_29097_$t.txt &
echo -n "$t 256 131072 8 1024 8192 2 - 1124528 - " > ./results/cachesim_result_29098_$t.txt
./cachesim $t 256 131072 8 1024 8192 2 >> ./results/cachesim_result_29098_$t.txt &
echo -n "$t 256 131072 8 256 8192 4 - 1125088 - " > ./results/cachesim_result_29099_$t.txt
./cachesim $t 256 131072 8 256 8192 4 >> ./results/cachesim_result_29099_$t.txt &
echo -n "$t 256 131072 8 512 8192 4 - 1124720 - " > ./results/cachesim_result_29100_$t.txt
./cachesim $t 256 131072 8 512 8192 4 >> ./results/cachesim_result_29100_$t.txt &
echo -n "$t 256 131072 8 1024 8192 4 - 1124536 - " > ./results/cachesim_result_29101_$t.txt
./cachesim $t 256 131072 8 1024 8192 4 >> ./results/cachesim_result_29101_$t.txt &
echo -n "$t 256 131072 8 256 8192 8 - 1125120 - " > ./results/cachesim_result_29102_$t.txt
./cachesim $t 256 131072 8 256 8192 8 >> ./results/cachesim_result_29102_$t.txt &
echo -n "$t 256 131072 8 512 8192 8 - 1124736 - " > ./results/cachesim_result_29103_$t.txt
./cachesim $t 256 131072 8 512 8192 8 >> ./results/cachesim_result_29103_$t.txt &
echo -n "$t 256 131072 8 1024 8192 8 - 1124544 - " > ./results/cachesim_result_29104_$t.txt
./cachesim $t 256 131072 8 1024 8192 8 >> ./results/cachesim_result_29104_$t.txt &
echo -n "$t 256 131072 8 256 8192 16 - 1125152 - " > ./results/cachesim_result_29105_$t.txt
./cachesim $t 256 131072 8 256 8192 16 >> ./results/cachesim_result_29105_$t.txt &
echo -n "$t 256 131072 8 512 8192 16 - 1124752 - " > ./results/cachesim_result_29106_$t.txt
./cachesim $t 256 131072 8 512 8192 16 >> ./results/cachesim_result_29106_$t.txt &
echo -n "$t 256 131072 8 256 8192 32 - 1125184 - " > ./results/cachesim_result_29107_$t.txt
./cachesim $t 256 131072 8 256 8192 32 >> ./results/cachesim_result_29107_$t.txt &
echo -n "$t 256 131072 8 256 16384 1 - 1191168 - " > ./results/cachesim_result_29108_$t.txt
./cachesim $t 256 131072 8 256 16384 1 >> ./results/cachesim_result_29108_$t.txt &
echo -n "$t 256 131072 8 512 16384 1 - 1190528 - " > ./results/cachesim_result_29109_$t.txt
./cachesim $t 256 131072 8 512 16384 1 >> ./results/cachesim_result_29109_$t.txt &
echo -n "$t 256 131072 8 1024 16384 1 - 1190208 - " > ./results/cachesim_result_29110_$t.txt
./cachesim $t 256 131072 8 1024 16384 1 >> ./results/cachesim_result_29110_$t.txt &
echo -n "$t 256 131072 8 256 16384 2 - 1191232 - " > ./results/cachesim_result_29111_$t.txt
./cachesim $t 256 131072 8 256 16384 2 >> ./results/cachesim_result_29111_$t.txt &
echo -n "$t 256 131072 8 512 16384 2 - 1190560 - " > ./results/cachesim_result_29112_$t.txt
./cachesim $t 256 131072 8 512 16384 2 >> ./results/cachesim_result_29112_$t.txt &
echo -n "$t 256 131072 8 1024 16384 2 - 1190224 - " > ./results/cachesim_result_29113_$t.txt
./cachesim $t 256 131072 8 1024 16384 2 >> ./results/cachesim_result_29113_$t.txt &
echo -n "$t 256 131072 8 256 16384 4 - 1191296 - " > ./results/cachesim_result_29114_$t.txt
./cachesim $t 256 131072 8 256 16384 4 >> ./results/cachesim_result_29114_$t.txt &
echo -n "$t 256 131072 8 512 16384 4 - 1190592 - " > ./results/cachesim_result_29115_$t.txt
./cachesim $t 256 131072 8 512 16384 4 >> ./results/cachesim_result_29115_$t.txt &
echo -n "$t 256 131072 8 1024 16384 4 - 1190240 - " > ./results/cachesim_result_29116_$t.txt
./cachesim $t 256 131072 8 1024 16384 4 >> ./results/cachesim_result_29116_$t.txt &
echo -n "$t 256 131072 8 256 16384 8 - 1191360 - " > ./results/cachesim_result_29117_$t.txt
./cachesim $t 256 131072 8 256 16384 8 >> ./results/cachesim_result_29117_$t.txt &
echo -n "$t 256 131072 8 512 16384 8 - 1190624 - " > ./results/cachesim_result_29118_$t.txt
./cachesim $t 256 131072 8 512 16384 8 >> ./results/cachesim_result_29118_$t.txt &
echo -n "$t 256 131072 8 1024 16384 8 - 1190256 - " > ./results/cachesim_result_29119_$t.txt
./cachesim $t 256 131072 8 1024 16384 8 >> ./results/cachesim_result_29119_$t.txt &
echo -n "$t 256 131072 8 256 16384 16 - 1191424 - " > ./results/cachesim_result_29120_$t.txt
./cachesim $t 256 131072 8 256 16384 16 >> ./results/cachesim_result_29120_$t.txt &
echo -n "$t 256 131072 8 512 16384 16 - 1190656 - " > ./results/cachesim_result_29121_$t.txt
./cachesim $t 256 131072 8 512 16384 16 >> ./results/cachesim_result_29121_$t.txt &
echo -n "$t 256 131072 8 1024 16384 16 - 1190272 - " > ./results/cachesim_result_29122_$t.txt
./cachesim $t 256 131072 8 1024 16384 16 >> ./results/cachesim_result_29122_$t.txt &
echo -n "$t 256 131072 8 256 16384 32 - 1191488 - " > ./results/cachesim_result_29123_$t.txt
./cachesim $t 256 131072 8 256 16384 32 >> ./results/cachesim_result_29123_$t.txt &
echo -n "$t 256 131072 8 512 16384 32 - 1190688 - " > ./results/cachesim_result_29124_$t.txt
./cachesim $t 256 131072 8 512 16384 32 >> ./results/cachesim_result_29124_$t.txt &
echo -n "$t 256 131072 8 256 32768 1 - 1323392 - " > ./results/cachesim_result_29125_$t.txt
./cachesim $t 256 131072 8 256 32768 1 >> ./results/cachesim_result_29125_$t.txt &
echo -n "$t 256 131072 8 512 32768 1 - 1322176 - " > ./results/cachesim_result_29126_$t.txt
./cachesim $t 256 131072 8 512 32768 1 >> ./results/cachesim_result_29126_$t.txt &
echo -n "$t 256 131072 8 1024 32768 1 - 1321568 - " > ./results/cachesim_result_29127_$t.txt
./cachesim $t 256 131072 8 1024 32768 1 >> ./results/cachesim_result_29127_$t.txt &
echo -n "$t 256 131072 8 256 32768 2 - 1323520 - " > ./results/cachesim_result_29128_$t.txt
./cachesim $t 256 131072 8 256 32768 2 >> ./results/cachesim_result_29128_$t.txt &
echo -n "$t 256 131072 8 512 32768 2 - 1322240 - " > ./results/cachesim_result_29129_$t.txt
./cachesim $t 256 131072 8 512 32768 2 >> ./results/cachesim_result_29129_$t.txt &
echo -n "$t 256 131072 8 1024 32768 2 - 1321600 - " > ./results/cachesim_result_29130_$t.txt
./cachesim $t 256 131072 8 1024 32768 2 >> ./results/cachesim_result_29130_$t.txt &
echo -n "$t 256 131072 8 256 32768 4 - 1323648 - " > ./results/cachesim_result_29131_$t.txt
./cachesim $t 256 131072 8 256 32768 4 >> ./results/cachesim_result_29131_$t.txt &
echo -n "$t 256 131072 8 512 32768 4 - 1322304 - " > ./results/cachesim_result_29132_$t.txt
./cachesim $t 256 131072 8 512 32768 4 >> ./results/cachesim_result_29132_$t.txt &
echo -n "$t 256 131072 8 1024 32768 4 - 1321632 - " > ./results/cachesim_result_29133_$t.txt
./cachesim $t 256 131072 8 1024 32768 4 >> ./results/cachesim_result_29133_$t.txt &
echo -n "$t 256 131072 8 256 32768 8 - 1323776 - " > ./results/cachesim_result_29134_$t.txt
./cachesim $t 256 131072 8 256 32768 8 >> ./results/cachesim_result_29134_$t.txt &
echo -n "$t 256 131072 8 512 32768 8 - 1322368 - " > ./results/cachesim_result_29135_$t.txt
./cachesim $t 256 131072 8 512 32768 8 >> ./results/cachesim_result_29135_$t.txt &
echo -n "$t 256 131072 8 1024 32768 8 - 1321664 - " > ./results/cachesim_result_29136_$t.txt
./cachesim $t 256 131072 8 1024 32768 8 >> ./results/cachesim_result_29136_$t.txt &
echo -n "$t 256 131072 8 256 32768 16 - 1323904 - " > ./results/cachesim_result_29137_$t.txt
./cachesim $t 256 131072 8 256 32768 16 >> ./results/cachesim_result_29137_$t.txt &
echo -n "$t 256 131072 8 512 32768 16 - 1322432 - " > ./results/cachesim_result_29138_$t.txt
./cachesim $t 256 131072 8 512 32768 16 >> ./results/cachesim_result_29138_$t.txt &
echo -n "$t 256 131072 8 1024 32768 16 - 1321696 - " > ./results/cachesim_result_29139_$t.txt
./cachesim $t 256 131072 8 1024 32768 16 >> ./results/cachesim_result_29139_$t.txt &
echo -n "$t 256 131072 8 256 32768 32 - 1324032 - " > ./results/cachesim_result_29140_$t.txt
./cachesim $t 256 131072 8 256 32768 32 >> ./results/cachesim_result_29140_$t.txt &
echo -n "$t 256 131072 8 512 32768 32 - 1322496 - " > ./results/cachesim_result_29141_$t.txt
./cachesim $t 256 131072 8 512 32768 32 >> ./results/cachesim_result_29141_$t.txt &
echo -n "$t 256 131072 8 1024 32768 32 - 1321728 - " > ./results/cachesim_result_29142_$t.txt
./cachesim $t 256 131072 8 1024 32768 32 >> ./results/cachesim_result_29142_$t.txt &
echo -n "$t 512 131072 8 512 4096 1 - 1086640 - " > ./results/cachesim_result_29143_$t.txt
./cachesim $t 512 131072 8 512 4096 1 >> ./results/cachesim_result_29143_$t.txt &
echo -n "$t 512 131072 8 1024 4096 1 - 1086552 - " > ./results/cachesim_result_29144_$t.txt
./cachesim $t 512 131072 8 1024 4096 1 >> ./results/cachesim_result_29144_$t.txt &
echo -n "$t 512 131072 8 512 4096 2 - 1086648 - " > ./results/cachesim_result_29145_$t.txt
./cachesim $t 512 131072 8 512 4096 2 >> ./results/cachesim_result_29145_$t.txt &
echo -n "$t 512 131072 8 1024 4096 2 - 1086556 - " > ./results/cachesim_result_29146_$t.txt
./cachesim $t 512 131072 8 1024 4096 2 >> ./results/cachesim_result_29146_$t.txt &
echo -n "$t 512 131072 8 512 4096 4 - 1086656 - " > ./results/cachesim_result_29147_$t.txt
./cachesim $t 512 131072 8 512 4096 4 >> ./results/cachesim_result_29147_$t.txt &
echo -n "$t 512 131072 8 1024 4096 4 - 1086560 - " > ./results/cachesim_result_29148_$t.txt
./cachesim $t 512 131072 8 1024 4096 4 >> ./results/cachesim_result_29148_$t.txt &
echo -n "$t 512 131072 8 512 4096 8 - 1086664 - " > ./results/cachesim_result_29149_$t.txt
./cachesim $t 512 131072 8 512 4096 8 >> ./results/cachesim_result_29149_$t.txt &
echo -n "$t 512 131072 8 512 8192 1 - 1119568 - " > ./results/cachesim_result_29150_$t.txt
./cachesim $t 512 131072 8 512 8192 1 >> ./results/cachesim_result_29150_$t.txt &
echo -n "$t 512 131072 8 1024 8192 1 - 1119400 - " > ./results/cachesim_result_29151_$t.txt
./cachesim $t 512 131072 8 1024 8192 1 >> ./results/cachesim_result_29151_$t.txt &
echo -n "$t 512 131072 8 512 8192 2 - 1119584 - " > ./results/cachesim_result_29152_$t.txt
./cachesim $t 512 131072 8 512 8192 2 >> ./results/cachesim_result_29152_$t.txt &
echo -n "$t 512 131072 8 1024 8192 2 - 1119408 - " > ./results/cachesim_result_29153_$t.txt
./cachesim $t 512 131072 8 1024 8192 2 >> ./results/cachesim_result_29153_$t.txt &
echo -n "$t 512 131072 8 512 8192 4 - 1119600 - " > ./results/cachesim_result_29154_$t.txt
./cachesim $t 512 131072 8 512 8192 4 >> ./results/cachesim_result_29154_$t.txt &
echo -n "$t 512 131072 8 1024 8192 4 - 1119416 - " > ./results/cachesim_result_29155_$t.txt
./cachesim $t 512 131072 8 1024 8192 4 >> ./results/cachesim_result_29155_$t.txt &
echo -n "$t 512 131072 8 512 8192 8 - 1119616 - " > ./results/cachesim_result_29156_$t.txt
./cachesim $t 512 131072 8 512 8192 8 >> ./results/cachesim_result_29156_$t.txt &
echo -n "$t 512 131072 8 1024 8192 8 - 1119424 - " > ./results/cachesim_result_29157_$t.txt
./cachesim $t 512 131072 8 1024 8192 8 >> ./results/cachesim_result_29157_$t.txt &
echo -n "$t 512 131072 8 512 8192 16 - 1119632 - " > ./results/cachesim_result_29158_$t.txt
./cachesim $t 512 131072 8 512 8192 16 >> ./results/cachesim_result_29158_$t.txt &
echo -n "$t 512 131072 8 512 16384 1 - 1185408 - " > ./results/cachesim_result_29159_$t.txt
./cachesim $t 512 131072 8 512 16384 1 >> ./results/cachesim_result_29159_$t.txt &
echo -n "$t 512 131072 8 1024 16384 1 - 1185088 - " > ./results/cachesim_result_29160_$t.txt
./cachesim $t 512 131072 8 1024 16384 1 >> ./results/cachesim_result_29160_$t.txt &
echo -n "$t 512 131072 8 512 16384 2 - 1185440 - " > ./results/cachesim_result_29161_$t.txt
./cachesim $t 512 131072 8 512 16384 2 >> ./results/cachesim_result_29161_$t.txt &
echo -n "$t 512 131072 8 1024 16384 2 - 1185104 - " > ./results/cachesim_result_29162_$t.txt
./cachesim $t 512 131072 8 1024 16384 2 >> ./results/cachesim_result_29162_$t.txt &
echo -n "$t 512 131072 8 512 16384 4 - 1185472 - " > ./results/cachesim_result_29163_$t.txt
./cachesim $t 512 131072 8 512 16384 4 >> ./results/cachesim_result_29163_$t.txt &
echo -n "$t 512 131072 8 1024 16384 4 - 1185120 - " > ./results/cachesim_result_29164_$t.txt
./cachesim $t 512 131072 8 1024 16384 4 >> ./results/cachesim_result_29164_$t.txt &
echo -n "$t 512 131072 8 512 16384 8 - 1185504 - " > ./results/cachesim_result_29165_$t.txt
./cachesim $t 512 131072 8 512 16384 8 >> ./results/cachesim_result_29165_$t.txt &
echo -n "$t 512 131072 8 1024 16384 8 - 1185136 - " > ./results/cachesim_result_29166_$t.txt
./cachesim $t 512 131072 8 1024 16384 8 >> ./results/cachesim_result_29166_$t.txt &
echo -n "$t 512 131072 8 512 16384 16 - 1185536 - " > ./results/cachesim_result_29167_$t.txt
./cachesim $t 512 131072 8 512 16384 16 >> ./results/cachesim_result_29167_$t.txt &
echo -n "$t 512 131072 8 1024 16384 16 - 1185152 - " > ./results/cachesim_result_29168_$t.txt
./cachesim $t 512 131072 8 1024 16384 16 >> ./results/cachesim_result_29168_$t.txt &
echo -n "$t 512 131072 8 512 16384 32 - 1185568 - " > ./results/cachesim_result_29169_$t.txt
./cachesim $t 512 131072 8 512 16384 32 >> ./results/cachesim_result_29169_$t.txt &
echo -n "$t 512 131072 8 512 32768 1 - 1317056 - " > ./results/cachesim_result_29170_$t.txt
./cachesim $t 512 131072 8 512 32768 1 >> ./results/cachesim_result_29170_$t.txt &
echo -n "$t 512 131072 8 1024 32768 1 - 1316448 - " > ./results/cachesim_result_29171_$t.txt
./cachesim $t 512 131072 8 1024 32768 1 >> ./results/cachesim_result_29171_$t.txt &
echo -n "$t 512 131072 8 512 32768 2 - 1317120 - " > ./results/cachesim_result_29172_$t.txt
./cachesim $t 512 131072 8 512 32768 2 >> ./results/cachesim_result_29172_$t.txt &
echo -n "$t 512 131072 8 1024 32768 2 - 1316480 - " > ./results/cachesim_result_29173_$t.txt
./cachesim $t 512 131072 8 1024 32768 2 >> ./results/cachesim_result_29173_$t.txt &
echo -n "$t 512 131072 8 512 32768 4 - 1317184 - " > ./results/cachesim_result_29174_$t.txt
./cachesim $t 512 131072 8 512 32768 4 >> ./results/cachesim_result_29174_$t.txt &
echo -n "$t 512 131072 8 1024 32768 4 - 1316512 - " > ./results/cachesim_result_29175_$t.txt
./cachesim $t 512 131072 8 1024 32768 4 >> ./results/cachesim_result_29175_$t.txt &
echo -n "$t 512 131072 8 512 32768 8 - 1317248 - " > ./results/cachesim_result_29176_$t.txt
./cachesim $t 512 131072 8 512 32768 8 >> ./results/cachesim_result_29176_$t.txt &
echo -n "$t 512 131072 8 1024 32768 8 - 1316544 - " > ./results/cachesim_result_29177_$t.txt
./cachesim $t 512 131072 8 1024 32768 8 >> ./results/cachesim_result_29177_$t.txt &
echo -n "$t 512 131072 8 512 32768 16 - 1317312 - " > ./results/cachesim_result_29178_$t.txt
./cachesim $t 512 131072 8 512 32768 16 >> ./results/cachesim_result_29178_$t.txt &
echo -n "$t 512 131072 8 1024 32768 16 - 1316576 - " > ./results/cachesim_result_29179_$t.txt
./cachesim $t 512 131072 8 1024 32768 16 >> ./results/cachesim_result_29179_$t.txt &
echo -n "$t 512 131072 8 512 32768 32 - 1317376 - " > ./results/cachesim_result_29180_$t.txt
./cachesim $t 512 131072 8 512 32768 32 >> ./results/cachesim_result_29180_$t.txt &
echo -n "$t 512 131072 8 1024 32768 32 - 1316608 - " > ./results/cachesim_result_29181_$t.txt
./cachesim $t 512 131072 8 1024 32768 32 >> ./results/cachesim_result_29181_$t.txt &
echo -n "$t 1024 131072 8 1024 4096 1 - 1083992 - " > ./results/cachesim_result_29182_$t.txt
./cachesim $t 1024 131072 8 1024 4096 1 >> ./results/cachesim_result_29182_$t.txt &
echo -n "$t 1024 131072 8 1024 4096 2 - 1083996 - " > ./results/cachesim_result_29183_$t.txt
./cachesim $t 1024 131072 8 1024 4096 2 >> ./results/cachesim_result_29183_$t.txt &
echo -n "$t 1024 131072 8 1024 4096 4 - 1084000 - " > ./results/cachesim_result_29184_$t.txt
./cachesim $t 1024 131072 8 1024 4096 4 >> ./results/cachesim_result_29184_$t.txt &
echo -n "$t 1024 131072 8 1024 8192 1 - 1116840 - " > ./results/cachesim_result_29185_$t.txt
./cachesim $t 1024 131072 8 1024 8192 1 >> ./results/cachesim_result_29185_$t.txt &
echo -n "$t 1024 131072 8 1024 8192 2 - 1116848 - " > ./results/cachesim_result_29186_$t.txt
./cachesim $t 1024 131072 8 1024 8192 2 >> ./results/cachesim_result_29186_$t.txt &
echo -n "$t 1024 131072 8 1024 8192 4 - 1116856 - " > ./results/cachesim_result_29187_$t.txt
./cachesim $t 1024 131072 8 1024 8192 4 >> ./results/cachesim_result_29187_$t.txt &
echo -n "$t 1024 131072 8 1024 8192 8 - 1116864 - " > ./results/cachesim_result_29188_$t.txt
./cachesim $t 1024 131072 8 1024 8192 8 >> ./results/cachesim_result_29188_$t.txt &
echo -n "$t 1024 131072 8 1024 16384 1 - 1182528 - " > ./results/cachesim_result_29189_$t.txt
./cachesim $t 1024 131072 8 1024 16384 1 >> ./results/cachesim_result_29189_$t.txt &
echo -n "$t 1024 131072 8 1024 16384 2 - 1182544 - " > ./results/cachesim_result_29190_$t.txt
./cachesim $t 1024 131072 8 1024 16384 2 >> ./results/cachesim_result_29190_$t.txt &
echo -n "$t 1024 131072 8 1024 16384 4 - 1182560 - " > ./results/cachesim_result_29191_$t.txt
./cachesim $t 1024 131072 8 1024 16384 4 >> ./results/cachesim_result_29191_$t.txt &
echo -n "$t 1024 131072 8 1024 16384 8 - 1182576 - " > ./results/cachesim_result_29192_$t.txt
./cachesim $t 1024 131072 8 1024 16384 8 >> ./results/cachesim_result_29192_$t.txt &
echo -n "$t 1024 131072 8 1024 16384 16 - 1182592 - " > ./results/cachesim_result_29193_$t.txt
./cachesim $t 1024 131072 8 1024 16384 16 >> ./results/cachesim_result_29193_$t.txt &
echo -n "$t 1024 131072 8 1024 32768 1 - 1313888 - " > ./results/cachesim_result_29194_$t.txt
./cachesim $t 1024 131072 8 1024 32768 1 >> ./results/cachesim_result_29194_$t.txt &
echo -n "$t 1024 131072 8 1024 32768 2 - 1313920 - " > ./results/cachesim_result_29195_$t.txt
./cachesim $t 1024 131072 8 1024 32768 2 >> ./results/cachesim_result_29195_$t.txt &
echo -n "$t 1024 131072 8 1024 32768 4 - 1313952 - " > ./results/cachesim_result_29196_$t.txt
./cachesim $t 1024 131072 8 1024 32768 4 >> ./results/cachesim_result_29196_$t.txt &
echo -n "$t 1024 131072 8 1024 32768 8 - 1313984 - " > ./results/cachesim_result_29197_$t.txt
./cachesim $t 1024 131072 8 1024 32768 8 >> ./results/cachesim_result_29197_$t.txt &
echo -n "$t 1024 131072 8 1024 32768 16 - 1314016 - " > ./results/cachesim_result_29198_$t.txt
./cachesim $t 1024 131072 8 1024 32768 16 >> ./results/cachesim_result_29198_$t.txt &
echo -n "$t 1024 131072 8 1024 32768 32 - 1314048 - " > ./results/cachesim_result_29199_$t.txt
./cachesim $t 1024 131072 8 1024 32768 32 >> ./results/cachesim_result_29199_$t.txt &
echo -n "$t 16 131072 16 16 4096 1 - 1259008 - " > ./results/cachesim_result_29200_$t.txt
./cachesim $t 16 131072 16 16 4096 1 >> ./results/cachesim_result_29200_$t.txt &
echo -n "$t 16 131072 16 32 4096 1 - 1256192 - " > ./results/cachesim_result_29201_$t.txt
./cachesim $t 16 131072 16 32 4096 1 >> ./results/cachesim_result_29201_$t.txt &
echo -n "$t 16 131072 16 64 4096 1 - 1254784 - " > ./results/cachesim_result_29202_$t.txt
./cachesim $t 16 131072 16 64 4096 1 >> ./results/cachesim_result_29202_$t.txt &
echo -n "$t 16 131072 16 128 4096 1 - 1254080 - " > ./results/cachesim_result_29203_$t.txt
./cachesim $t 16 131072 16 128 4096 1 >> ./results/cachesim_result_29203_$t.txt &
echo -n "$t 16 131072 16 256 4096 1 - 1253728 - " > ./results/cachesim_result_29204_$t.txt
./cachesim $t 16 131072 16 256 4096 1 >> ./results/cachesim_result_29204_$t.txt &
echo -n "$t 16 131072 16 512 4096 1 - 1253552 - " > ./results/cachesim_result_29205_$t.txt
./cachesim $t 16 131072 16 512 4096 1 >> ./results/cachesim_result_29205_$t.txt &
echo -n "$t 16 131072 16 1024 4096 1 - 1253464 - " > ./results/cachesim_result_29206_$t.txt
./cachesim $t 16 131072 16 1024 4096 1 >> ./results/cachesim_result_29206_$t.txt &
echo -n "$t 16 131072 16 16 4096 2 - 1259264 - " > ./results/cachesim_result_29207_$t.txt
./cachesim $t 16 131072 16 16 4096 2 >> ./results/cachesim_result_29207_$t.txt &
echo -n "$t 16 131072 16 32 4096 2 - 1256320 - " > ./results/cachesim_result_29208_$t.txt
./cachesim $t 16 131072 16 32 4096 2 >> ./results/cachesim_result_29208_$t.txt &
echo -n "$t 16 131072 16 64 4096 2 - 1254848 - " > ./results/cachesim_result_29209_$t.txt
./cachesim $t 16 131072 16 64 4096 2 >> ./results/cachesim_result_29209_$t.txt &
echo -n "$t 16 131072 16 128 4096 2 - 1254112 - " > ./results/cachesim_result_29210_$t.txt
./cachesim $t 16 131072 16 128 4096 2 >> ./results/cachesim_result_29210_$t.txt &
echo -n "$t 16 131072 16 256 4096 2 - 1253744 - " > ./results/cachesim_result_29211_$t.txt
./cachesim $t 16 131072 16 256 4096 2 >> ./results/cachesim_result_29211_$t.txt &
echo -n "$t 16 131072 16 512 4096 2 - 1253560 - " > ./results/cachesim_result_29212_$t.txt
./cachesim $t 16 131072 16 512 4096 2 >> ./results/cachesim_result_29212_$t.txt &
echo -n "$t 16 131072 16 1024 4096 2 - 1253468 - " > ./results/cachesim_result_29213_$t.txt
./cachesim $t 16 131072 16 1024 4096 2 >> ./results/cachesim_result_29213_$t.txt &
echo -n "$t 16 131072 16 16 4096 4 - 1259520 - " > ./results/cachesim_result_29214_$t.txt
./cachesim $t 16 131072 16 16 4096 4 >> ./results/cachesim_result_29214_$t.txt &
echo -n "$t 16 131072 16 32 4096 4 - 1256448 - " > ./results/cachesim_result_29215_$t.txt
./cachesim $t 16 131072 16 32 4096 4 >> ./results/cachesim_result_29215_$t.txt &
echo -n "$t 16 131072 16 64 4096 4 - 1254912 - " > ./results/cachesim_result_29216_$t.txt
./cachesim $t 16 131072 16 64 4096 4 >> ./results/cachesim_result_29216_$t.txt &
echo -n "$t 16 131072 16 128 4096 4 - 1254144 - " > ./results/cachesim_result_29217_$t.txt
./cachesim $t 16 131072 16 128 4096 4 >> ./results/cachesim_result_29217_$t.txt &
echo -n "$t 16 131072 16 256 4096 4 - 1253760 - " > ./results/cachesim_result_29218_$t.txt
./cachesim $t 16 131072 16 256 4096 4 >> ./results/cachesim_result_29218_$t.txt &
echo -n "$t 16 131072 16 512 4096 4 - 1253568 - " > ./results/cachesim_result_29219_$t.txt
./cachesim $t 16 131072 16 512 4096 4 >> ./results/cachesim_result_29219_$t.txt &
echo -n "$t 16 131072 16 1024 4096 4 - 1253472 - " > ./results/cachesim_result_29220_$t.txt
./cachesim $t 16 131072 16 1024 4096 4 >> ./results/cachesim_result_29220_$t.txt &
echo -n "$t 16 131072 16 16 4096 8 - 1259776 - " > ./results/cachesim_result_29221_$t.txt
./cachesim $t 16 131072 16 16 4096 8 >> ./results/cachesim_result_29221_$t.txt &
echo -n "$t 16 131072 16 32 4096 8 - 1256576 - " > ./results/cachesim_result_29222_$t.txt
./cachesim $t 16 131072 16 32 4096 8 >> ./results/cachesim_result_29222_$t.txt &
echo -n "$t 16 131072 16 64 4096 8 - 1254976 - " > ./results/cachesim_result_29223_$t.txt
./cachesim $t 16 131072 16 64 4096 8 >> ./results/cachesim_result_29223_$t.txt &
echo -n "$t 16 131072 16 128 4096 8 - 1254176 - " > ./results/cachesim_result_29224_$t.txt
./cachesim $t 16 131072 16 128 4096 8 >> ./results/cachesim_result_29224_$t.txt &
echo -n "$t 16 131072 16 256 4096 8 - 1253776 - " > ./results/cachesim_result_29225_$t.txt
./cachesim $t 16 131072 16 256 4096 8 >> ./results/cachesim_result_29225_$t.txt &
echo -n "$t 16 131072 16 512 4096 8 - 1253576 - " > ./results/cachesim_result_29226_$t.txt
./cachesim $t 16 131072 16 512 4096 8 >> ./results/cachesim_result_29226_$t.txt &
echo -n "$t 16 131072 16 16 4096 16 - 1260032 - " > ./results/cachesim_result_29227_$t.txt
./cachesim $t 16 131072 16 16 4096 16 >> ./results/cachesim_result_29227_$t.txt &
echo -n "$t 16 131072 16 32 4096 16 - 1256704 - " > ./results/cachesim_result_29228_$t.txt
./cachesim $t 16 131072 16 32 4096 16 >> ./results/cachesim_result_29228_$t.txt &
echo -n "$t 16 131072 16 64 4096 16 - 1255040 - " > ./results/cachesim_result_29229_$t.txt
./cachesim $t 16 131072 16 64 4096 16 >> ./results/cachesim_result_29229_$t.txt &
echo -n "$t 16 131072 16 128 4096 16 - 1254208 - " > ./results/cachesim_result_29230_$t.txt
./cachesim $t 16 131072 16 128 4096 16 >> ./results/cachesim_result_29230_$t.txt &
echo -n "$t 16 131072 16 256 4096 16 - 1253792 - " > ./results/cachesim_result_29231_$t.txt
./cachesim $t 16 131072 16 256 4096 16 >> ./results/cachesim_result_29231_$t.txt &
echo -n "$t 16 131072 16 16 4096 32 - 1260288 - " > ./results/cachesim_result_29232_$t.txt
./cachesim $t 16 131072 16 16 4096 32 >> ./results/cachesim_result_29232_$t.txt &
echo -n "$t 16 131072 16 32 4096 32 - 1256832 - " > ./results/cachesim_result_29233_$t.txt
./cachesim $t 16 131072 16 32 4096 32 >> ./results/cachesim_result_29233_$t.txt &
echo -n "$t 16 131072 16 64 4096 32 - 1255104 - " > ./results/cachesim_result_29234_$t.txt
./cachesim $t 16 131072 16 64 4096 32 >> ./results/cachesim_result_29234_$t.txt &
echo -n "$t 16 131072 16 128 4096 32 - 1254240 - " > ./results/cachesim_result_29235_$t.txt
./cachesim $t 16 131072 16 128 4096 32 >> ./results/cachesim_result_29235_$t.txt &
echo -n "$t 16 131072 16 16 8192 1 - 1296896 - " > ./results/cachesim_result_29236_$t.txt
./cachesim $t 16 131072 16 16 8192 1 >> ./results/cachesim_result_29236_$t.txt &
echo -n "$t 16 131072 16 32 8192 1 - 1291520 - " > ./results/cachesim_result_29237_$t.txt
./cachesim $t 16 131072 16 32 8192 1 >> ./results/cachesim_result_29237_$t.txt &
echo -n "$t 16 131072 16 64 8192 1 - 1288832 - " > ./results/cachesim_result_29238_$t.txt
./cachesim $t 16 131072 16 64 8192 1 >> ./results/cachesim_result_29238_$t.txt &
echo -n "$t 16 131072 16 128 8192 1 - 1287488 - " > ./results/cachesim_result_29239_$t.txt
./cachesim $t 16 131072 16 128 8192 1 >> ./results/cachesim_result_29239_$t.txt &
echo -n "$t 16 131072 16 256 8192 1 - 1286816 - " > ./results/cachesim_result_29240_$t.txt
./cachesim $t 16 131072 16 256 8192 1 >> ./results/cachesim_result_29240_$t.txt &
echo -n "$t 16 131072 16 512 8192 1 - 1286480 - " > ./results/cachesim_result_29241_$t.txt
./cachesim $t 16 131072 16 512 8192 1 >> ./results/cachesim_result_29241_$t.txt &
echo -n "$t 16 131072 16 1024 8192 1 - 1286312 - " > ./results/cachesim_result_29242_$t.txt
./cachesim $t 16 131072 16 1024 8192 1 >> ./results/cachesim_result_29242_$t.txt &
echo -n "$t 16 131072 16 16 8192 2 - 1297408 - " > ./results/cachesim_result_29243_$t.txt
./cachesim $t 16 131072 16 16 8192 2 >> ./results/cachesim_result_29243_$t.txt &
echo -n "$t 16 131072 16 32 8192 2 - 1291776 - " > ./results/cachesim_result_29244_$t.txt
./cachesim $t 16 131072 16 32 8192 2 >> ./results/cachesim_result_29244_$t.txt &
echo -n "$t 16 131072 16 64 8192 2 - 1288960 - " > ./results/cachesim_result_29245_$t.txt
./cachesim $t 16 131072 16 64 8192 2 >> ./results/cachesim_result_29245_$t.txt &
echo -n "$t 16 131072 16 128 8192 2 - 1287552 - " > ./results/cachesim_result_29246_$t.txt
./cachesim $t 16 131072 16 128 8192 2 >> ./results/cachesim_result_29246_$t.txt &
echo -n "$t 16 131072 16 256 8192 2 - 1286848 - " > ./results/cachesim_result_29247_$t.txt
./cachesim $t 16 131072 16 256 8192 2 >> ./results/cachesim_result_29247_$t.txt &
echo -n "$t 16 131072 16 512 8192 2 - 1286496 - " > ./results/cachesim_result_29248_$t.txt
./cachesim $t 16 131072 16 512 8192 2 >> ./results/cachesim_result_29248_$t.txt &
echo -n "$t 16 131072 16 1024 8192 2 - 1286320 - " > ./results/cachesim_result_29249_$t.txt
./cachesim $t 16 131072 16 1024 8192 2 >> ./results/cachesim_result_29249_$t.txt &
echo -n "$t 16 131072 16 16 8192 4 - 1297920 - " > ./results/cachesim_result_29250_$t.txt
./cachesim $t 16 131072 16 16 8192 4 >> ./results/cachesim_result_29250_$t.txt &
echo -n "$t 16 131072 16 32 8192 4 - 1292032 - " > ./results/cachesim_result_29251_$t.txt
./cachesim $t 16 131072 16 32 8192 4 >> ./results/cachesim_result_29251_$t.txt &
echo -n "$t 16 131072 16 64 8192 4 - 1289088 - " > ./results/cachesim_result_29252_$t.txt
./cachesim $t 16 131072 16 64 8192 4 >> ./results/cachesim_result_29252_$t.txt &
echo -n "$t 16 131072 16 128 8192 4 - 1287616 - " > ./results/cachesim_result_29253_$t.txt
./cachesim $t 16 131072 16 128 8192 4 >> ./results/cachesim_result_29253_$t.txt &
echo -n "$t 16 131072 16 256 8192 4 - 1286880 - " > ./results/cachesim_result_29254_$t.txt
./cachesim $t 16 131072 16 256 8192 4 >> ./results/cachesim_result_29254_$t.txt &
echo -n "$t 16 131072 16 512 8192 4 - 1286512 - " > ./results/cachesim_result_29255_$t.txt
./cachesim $t 16 131072 16 512 8192 4 >> ./results/cachesim_result_29255_$t.txt &
echo -n "$t 16 131072 16 1024 8192 4 - 1286328 - " > ./results/cachesim_result_29256_$t.txt
./cachesim $t 16 131072 16 1024 8192 4 >> ./results/cachesim_result_29256_$t.txt &
echo -n "$t 16 131072 16 16 8192 8 - 1298432 - " > ./results/cachesim_result_29257_$t.txt
./cachesim $t 16 131072 16 16 8192 8 >> ./results/cachesim_result_29257_$t.txt &
echo -n "$t 16 131072 16 32 8192 8 - 1292288 - " > ./results/cachesim_result_29258_$t.txt
./cachesim $t 16 131072 16 32 8192 8 >> ./results/cachesim_result_29258_$t.txt &
echo -n "$t 16 131072 16 64 8192 8 - 1289216 - " > ./results/cachesim_result_29259_$t.txt
./cachesim $t 16 131072 16 64 8192 8 >> ./results/cachesim_result_29259_$t.txt &
echo -n "$t 16 131072 16 128 8192 8 - 1287680 - " > ./results/cachesim_result_29260_$t.txt
./cachesim $t 16 131072 16 128 8192 8 >> ./results/cachesim_result_29260_$t.txt &
echo -n "$t 16 131072 16 256 8192 8 - 1286912 - " > ./results/cachesim_result_29261_$t.txt
./cachesim $t 16 131072 16 256 8192 8 >> ./results/cachesim_result_29261_$t.txt &
echo -n "$t 16 131072 16 512 8192 8 - 1286528 - " > ./results/cachesim_result_29262_$t.txt
./cachesim $t 16 131072 16 512 8192 8 >> ./results/cachesim_result_29262_$t.txt &
echo -n "$t 16 131072 16 1024 8192 8 - 1286336 - " > ./results/cachesim_result_29263_$t.txt
./cachesim $t 16 131072 16 1024 8192 8 >> ./results/cachesim_result_29263_$t.txt &
echo -n "$t 16 131072 16 16 8192 16 - 1298944 - " > ./results/cachesim_result_29264_$t.txt
./cachesim $t 16 131072 16 16 8192 16 >> ./results/cachesim_result_29264_$t.txt &
echo -n "$t 16 131072 16 32 8192 16 - 1292544 - " > ./results/cachesim_result_29265_$t.txt
./cachesim $t 16 131072 16 32 8192 16 >> ./results/cachesim_result_29265_$t.txt &
echo -n "$t 16 131072 16 64 8192 16 - 1289344 - " > ./results/cachesim_result_29266_$t.txt
./cachesim $t 16 131072 16 64 8192 16 >> ./results/cachesim_result_29266_$t.txt &
echo -n "$t 16 131072 16 128 8192 16 - 1287744 - " > ./results/cachesim_result_29267_$t.txt
./cachesim $t 16 131072 16 128 8192 16 >> ./results/cachesim_result_29267_$t.txt &
echo -n "$t 16 131072 16 256 8192 16 - 1286944 - " > ./results/cachesim_result_29268_$t.txt
./cachesim $t 16 131072 16 256 8192 16 >> ./results/cachesim_result_29268_$t.txt &
echo -n "$t 16 131072 16 512 8192 16 - 1286544 - " > ./results/cachesim_result_29269_$t.txt
./cachesim $t 16 131072 16 512 8192 16 >> ./results/cachesim_result_29269_$t.txt &
echo -n "$t 16 131072 16 16 8192 32 - 1299456 - " > ./results/cachesim_result_29270_$t.txt
./cachesim $t 16 131072 16 16 8192 32 >> ./results/cachesim_result_29270_$t.txt &
echo -n "$t 16 131072 16 32 8192 32 - 1292800 - " > ./results/cachesim_result_29271_$t.txt
./cachesim $t 16 131072 16 32 8192 32 >> ./results/cachesim_result_29271_$t.txt &
echo -n "$t 16 131072 16 64 8192 32 - 1289472 - " > ./results/cachesim_result_29272_$t.txt
./cachesim $t 16 131072 16 64 8192 32 >> ./results/cachesim_result_29272_$t.txt &
echo -n "$t 16 131072 16 128 8192 32 - 1287808 - " > ./results/cachesim_result_29273_$t.txt
./cachesim $t 16 131072 16 128 8192 32 >> ./results/cachesim_result_29273_$t.txt &
echo -n "$t 16 131072 16 256 8192 32 - 1286976 - " > ./results/cachesim_result_29274_$t.txt
./cachesim $t 16 131072 16 256 8192 32 >> ./results/cachesim_result_29274_$t.txt &
echo -n "$t 16 131072 16 16 16384 1 - 1372160 - " > ./results/cachesim_result_29275_$t.txt
./cachesim $t 16 131072 16 16 16384 1 >> ./results/cachesim_result_29275_$t.txt &
echo -n "$t 16 131072 16 32 16384 1 - 1361920 - " > ./results/cachesim_result_29276_$t.txt
./cachesim $t 16 131072 16 32 16384 1 >> ./results/cachesim_result_29276_$t.txt &
echo -n "$t 16 131072 16 64 16384 1 - 1356800 - " > ./results/cachesim_result_29277_$t.txt
./cachesim $t 16 131072 16 64 16384 1 >> ./results/cachesim_result_29277_$t.txt &
echo -n "$t 16 131072 16 128 16384 1 - 1354240 - " > ./results/cachesim_result_29278_$t.txt
./cachesim $t 16 131072 16 128 16384 1 >> ./results/cachesim_result_29278_$t.txt &
echo -n "$t 16 131072 16 256 16384 1 - 1352960 - " > ./results/cachesim_result_29279_$t.txt
./cachesim $t 16 131072 16 256 16384 1 >> ./results/cachesim_result_29279_$t.txt &
echo -n "$t 16 131072 16 512 16384 1 - 1352320 - " > ./results/cachesim_result_29280_$t.txt
./cachesim $t 16 131072 16 512 16384 1 >> ./results/cachesim_result_29280_$t.txt &
echo -n "$t 16 131072 16 1024 16384 1 - 1352000 - " > ./results/cachesim_result_29281_$t.txt
./cachesim $t 16 131072 16 1024 16384 1 >> ./results/cachesim_result_29281_$t.txt &
echo -n "$t 16 131072 16 16 16384 2 - 1373184 - " > ./results/cachesim_result_29282_$t.txt
./cachesim $t 16 131072 16 16 16384 2 >> ./results/cachesim_result_29282_$t.txt &
echo -n "$t 16 131072 16 32 16384 2 - 1362432 - " > ./results/cachesim_result_29283_$t.txt
./cachesim $t 16 131072 16 32 16384 2 >> ./results/cachesim_result_29283_$t.txt &
echo -n "$t 16 131072 16 64 16384 2 - 1357056 - " > ./results/cachesim_result_29284_$t.txt
./cachesim $t 16 131072 16 64 16384 2 >> ./results/cachesim_result_29284_$t.txt &
echo -n "$t 16 131072 16 128 16384 2 - 1354368 - " > ./results/cachesim_result_29285_$t.txt
./cachesim $t 16 131072 16 128 16384 2 >> ./results/cachesim_result_29285_$t.txt &
echo -n "$t 16 131072 16 256 16384 2 - 1353024 - " > ./results/cachesim_result_29286_$t.txt
./cachesim $t 16 131072 16 256 16384 2 >> ./results/cachesim_result_29286_$t.txt &
echo -n "$t 16 131072 16 512 16384 2 - 1352352 - " > ./results/cachesim_result_29287_$t.txt
./cachesim $t 16 131072 16 512 16384 2 >> ./results/cachesim_result_29287_$t.txt &
echo -n "$t 16 131072 16 1024 16384 2 - 1352016 - " > ./results/cachesim_result_29288_$t.txt
./cachesim $t 16 131072 16 1024 16384 2 >> ./results/cachesim_result_29288_$t.txt &
echo -n "$t 16 131072 16 16 16384 4 - 1374208 - " > ./results/cachesim_result_29289_$t.txt
./cachesim $t 16 131072 16 16 16384 4 >> ./results/cachesim_result_29289_$t.txt &
echo -n "$t 16 131072 16 32 16384 4 - 1362944 - " > ./results/cachesim_result_29290_$t.txt
./cachesim $t 16 131072 16 32 16384 4 >> ./results/cachesim_result_29290_$t.txt &
echo -n "$t 16 131072 16 64 16384 4 - 1357312 - " > ./results/cachesim_result_29291_$t.txt
./cachesim $t 16 131072 16 64 16384 4 >> ./results/cachesim_result_29291_$t.txt &
echo -n "$t 16 131072 16 128 16384 4 - 1354496 - " > ./results/cachesim_result_29292_$t.txt
./cachesim $t 16 131072 16 128 16384 4 >> ./results/cachesim_result_29292_$t.txt &
echo -n "$t 16 131072 16 256 16384 4 - 1353088 - " > ./results/cachesim_result_29293_$t.txt
./cachesim $t 16 131072 16 256 16384 4 >> ./results/cachesim_result_29293_$t.txt &
echo -n "$t 16 131072 16 512 16384 4 - 1352384 - " > ./results/cachesim_result_29294_$t.txt
./cachesim $t 16 131072 16 512 16384 4 >> ./results/cachesim_result_29294_$t.txt &
echo -n "$t 16 131072 16 1024 16384 4 - 1352032 - " > ./results/cachesim_result_29295_$t.txt
./cachesim $t 16 131072 16 1024 16384 4 >> ./results/cachesim_result_29295_$t.txt &
echo -n "$t 16 131072 16 16 16384 8 - 1375232 - " > ./results/cachesim_result_29296_$t.txt
./cachesim $t 16 131072 16 16 16384 8 >> ./results/cachesim_result_29296_$t.txt &
echo -n "$t 16 131072 16 32 16384 8 - 1363456 - " > ./results/cachesim_result_29297_$t.txt
./cachesim $t 16 131072 16 32 16384 8 >> ./results/cachesim_result_29297_$t.txt &
echo -n "$t 16 131072 16 64 16384 8 - 1357568 - " > ./results/cachesim_result_29298_$t.txt
./cachesim $t 16 131072 16 64 16384 8 >> ./results/cachesim_result_29298_$t.txt &
echo -n "$t 16 131072 16 128 16384 8 - 1354624 - " > ./results/cachesim_result_29299_$t.txt
./cachesim $t 16 131072 16 128 16384 8 >> ./results/cachesim_result_29299_$t.txt &
echo -n "$t 16 131072 16 256 16384 8 - 1353152 - " > ./results/cachesim_result_29300_$t.txt
./cachesim $t 16 131072 16 256 16384 8 >> ./results/cachesim_result_29300_$t.txt &
echo -n "$t 16 131072 16 512 16384 8 - 1352416 - " > ./results/cachesim_result_29301_$t.txt
./cachesim $t 16 131072 16 512 16384 8 >> ./results/cachesim_result_29301_$t.txt &
echo -n "$t 16 131072 16 1024 16384 8 - 1352048 - " > ./results/cachesim_result_29302_$t.txt
./cachesim $t 16 131072 16 1024 16384 8 >> ./results/cachesim_result_29302_$t.txt &
echo -n "$t 16 131072 16 16 16384 16 - 1376256 - " > ./results/cachesim_result_29303_$t.txt
./cachesim $t 16 131072 16 16 16384 16 >> ./results/cachesim_result_29303_$t.txt &
echo -n "$t 16 131072 16 32 16384 16 - 1363968 - " > ./results/cachesim_result_29304_$t.txt
./cachesim $t 16 131072 16 32 16384 16 >> ./results/cachesim_result_29304_$t.txt &
echo -n "$t 16 131072 16 64 16384 16 - 1357824 - " > ./results/cachesim_result_29305_$t.txt
./cachesim $t 16 131072 16 64 16384 16 >> ./results/cachesim_result_29305_$t.txt &
echo -n "$t 16 131072 16 128 16384 16 - 1354752 - " > ./results/cachesim_result_29306_$t.txt
./cachesim $t 16 131072 16 128 16384 16 >> ./results/cachesim_result_29306_$t.txt &
echo -n "$t 16 131072 16 256 16384 16 - 1353216 - " > ./results/cachesim_result_29307_$t.txt
./cachesim $t 16 131072 16 256 16384 16 >> ./results/cachesim_result_29307_$t.txt &
echo -n "$t 16 131072 16 512 16384 16 - 1352448 - " > ./results/cachesim_result_29308_$t.txt
./cachesim $t 16 131072 16 512 16384 16 >> ./results/cachesim_result_29308_$t.txt &
echo -n "$t 16 131072 16 1024 16384 16 - 1352064 - " > ./results/cachesim_result_29309_$t.txt
./cachesim $t 16 131072 16 1024 16384 16 >> ./results/cachesim_result_29309_$t.txt &
echo -n "$t 16 131072 16 16 16384 32 - 1377280 - " > ./results/cachesim_result_29310_$t.txt
./cachesim $t 16 131072 16 16 16384 32 >> ./results/cachesim_result_29310_$t.txt &
echo -n "$t 16 131072 16 32 16384 32 - 1364480 - " > ./results/cachesim_result_29311_$t.txt
./cachesim $t 16 131072 16 32 16384 32 >> ./results/cachesim_result_29311_$t.txt &
echo -n "$t 16 131072 16 64 16384 32 - 1358080 - " > ./results/cachesim_result_29312_$t.txt
./cachesim $t 16 131072 16 64 16384 32 >> ./results/cachesim_result_29312_$t.txt &
echo -n "$t 16 131072 16 128 16384 32 - 1354880 - " > ./results/cachesim_result_29313_$t.txt
./cachesim $t 16 131072 16 128 16384 32 >> ./results/cachesim_result_29313_$t.txt &
echo -n "$t 16 131072 16 256 16384 32 - 1353280 - " > ./results/cachesim_result_29314_$t.txt
./cachesim $t 16 131072 16 256 16384 32 >> ./results/cachesim_result_29314_$t.txt &
echo -n "$t 16 131072 16 512 16384 32 - 1352480 - " > ./results/cachesim_result_29315_$t.txt
./cachesim $t 16 131072 16 512 16384 32 >> ./results/cachesim_result_29315_$t.txt &
echo -n "$t 16 131072 16 64 32768 1 - 1492480 - " > ./results/cachesim_result_29316_$t.txt
./cachesim $t 16 131072 16 64 32768 1 >> ./results/cachesim_result_29316_$t.txt &
echo -n "$t 16 131072 16 128 32768 1 - 1487616 - " > ./results/cachesim_result_29317_$t.txt
./cachesim $t 16 131072 16 128 32768 1 >> ./results/cachesim_result_29317_$t.txt &
echo -n "$t 16 131072 16 256 32768 1 - 1485184 - " > ./results/cachesim_result_29318_$t.txt
./cachesim $t 16 131072 16 256 32768 1 >> ./results/cachesim_result_29318_$t.txt &
echo -n "$t 16 131072 16 512 32768 1 - 1483968 - " > ./results/cachesim_result_29319_$t.txt
./cachesim $t 16 131072 16 512 32768 1 >> ./results/cachesim_result_29319_$t.txt &
echo -n "$t 16 131072 16 1024 32768 1 - 1483360 - " > ./results/cachesim_result_29320_$t.txt
./cachesim $t 16 131072 16 1024 32768 1 >> ./results/cachesim_result_29320_$t.txt &
echo -n "$t 16 131072 16 64 32768 2 - 1492992 - " > ./results/cachesim_result_29321_$t.txt
./cachesim $t 16 131072 16 64 32768 2 >> ./results/cachesim_result_29321_$t.txt &
echo -n "$t 16 131072 16 128 32768 2 - 1487872 - " > ./results/cachesim_result_29322_$t.txt
./cachesim $t 16 131072 16 128 32768 2 >> ./results/cachesim_result_29322_$t.txt &
echo -n "$t 16 131072 16 256 32768 2 - 1485312 - " > ./results/cachesim_result_29323_$t.txt
./cachesim $t 16 131072 16 256 32768 2 >> ./results/cachesim_result_29323_$t.txt &
echo -n "$t 16 131072 16 512 32768 2 - 1484032 - " > ./results/cachesim_result_29324_$t.txt
./cachesim $t 16 131072 16 512 32768 2 >> ./results/cachesim_result_29324_$t.txt &
echo -n "$t 16 131072 16 1024 32768 2 - 1483392 - " > ./results/cachesim_result_29325_$t.txt
./cachesim $t 16 131072 16 1024 32768 2 >> ./results/cachesim_result_29325_$t.txt &
echo -n "$t 16 131072 16 64 32768 4 - 1493504 - " > ./results/cachesim_result_29326_$t.txt
./cachesim $t 16 131072 16 64 32768 4 >> ./results/cachesim_result_29326_$t.txt &
echo -n "$t 16 131072 16 128 32768 4 - 1488128 - " > ./results/cachesim_result_29327_$t.txt
./cachesim $t 16 131072 16 128 32768 4 >> ./results/cachesim_result_29327_$t.txt &
echo -n "$t 16 131072 16 256 32768 4 - 1485440 - " > ./results/cachesim_result_29328_$t.txt
./cachesim $t 16 131072 16 256 32768 4 >> ./results/cachesim_result_29328_$t.txt &
echo -n "$t 16 131072 16 512 32768 4 - 1484096 - " > ./results/cachesim_result_29329_$t.txt
./cachesim $t 16 131072 16 512 32768 4 >> ./results/cachesim_result_29329_$t.txt &
echo -n "$t 16 131072 16 1024 32768 4 - 1483424 - " > ./results/cachesim_result_29330_$t.txt
./cachesim $t 16 131072 16 1024 32768 4 >> ./results/cachesim_result_29330_$t.txt &
echo -n "$t 16 131072 16 64 32768 8 - 1494016 - " > ./results/cachesim_result_29331_$t.txt
./cachesim $t 16 131072 16 64 32768 8 >> ./results/cachesim_result_29331_$t.txt &
echo -n "$t 16 131072 16 128 32768 8 - 1488384 - " > ./results/cachesim_result_29332_$t.txt
./cachesim $t 16 131072 16 128 32768 8 >> ./results/cachesim_result_29332_$t.txt &
echo -n "$t 16 131072 16 256 32768 8 - 1485568 - " > ./results/cachesim_result_29333_$t.txt
./cachesim $t 16 131072 16 256 32768 8 >> ./results/cachesim_result_29333_$t.txt &
echo -n "$t 16 131072 16 512 32768 8 - 1484160 - " > ./results/cachesim_result_29334_$t.txt
./cachesim $t 16 131072 16 512 32768 8 >> ./results/cachesim_result_29334_$t.txt &
echo -n "$t 16 131072 16 1024 32768 8 - 1483456 - " > ./results/cachesim_result_29335_$t.txt
./cachesim $t 16 131072 16 1024 32768 8 >> ./results/cachesim_result_29335_$t.txt &
echo -n "$t 16 131072 16 64 32768 16 - 1494528 - " > ./results/cachesim_result_29336_$t.txt
./cachesim $t 16 131072 16 64 32768 16 >> ./results/cachesim_result_29336_$t.txt &
echo -n "$t 16 131072 16 128 32768 16 - 1488640 - " > ./results/cachesim_result_29337_$t.txt
./cachesim $t 16 131072 16 128 32768 16 >> ./results/cachesim_result_29337_$t.txt &
echo -n "$t 16 131072 16 256 32768 16 - 1485696 - " > ./results/cachesim_result_29338_$t.txt
./cachesim $t 16 131072 16 256 32768 16 >> ./results/cachesim_result_29338_$t.txt &
echo -n "$t 16 131072 16 512 32768 16 - 1484224 - " > ./results/cachesim_result_29339_$t.txt
./cachesim $t 16 131072 16 512 32768 16 >> ./results/cachesim_result_29339_$t.txt &
echo -n "$t 16 131072 16 1024 32768 16 - 1483488 - " > ./results/cachesim_result_29340_$t.txt
./cachesim $t 16 131072 16 1024 32768 16 >> ./results/cachesim_result_29340_$t.txt &
echo -n "$t 16 131072 16 64 32768 32 - 1495040 - " > ./results/cachesim_result_29341_$t.txt
./cachesim $t 16 131072 16 64 32768 32 >> ./results/cachesim_result_29341_$t.txt &
echo -n "$t 16 131072 16 128 32768 32 - 1488896 - " > ./results/cachesim_result_29342_$t.txt
./cachesim $t 16 131072 16 128 32768 32 >> ./results/cachesim_result_29342_$t.txt &
echo -n "$t 16 131072 16 256 32768 32 - 1485824 - " > ./results/cachesim_result_29343_$t.txt
./cachesim $t 16 131072 16 256 32768 32 >> ./results/cachesim_result_29343_$t.txt &
echo -n "$t 16 131072 16 512 32768 32 - 1484288 - " > ./results/cachesim_result_29344_$t.txt
./cachesim $t 16 131072 16 512 32768 32 >> ./results/cachesim_result_29344_$t.txt &
echo -n "$t 16 131072 16 1024 32768 32 - 1483520 - " > ./results/cachesim_result_29345_$t.txt
./cachesim $t 16 131072 16 1024 32768 32 >> ./results/cachesim_result_29345_$t.txt &
echo -n "$t 32 131072 16 32 4096 1 - 1170176 - " > ./results/cachesim_result_29346_$t.txt
./cachesim $t 32 131072 16 32 4096 1 >> ./results/cachesim_result_29346_$t.txt &
echo -n "$t 32 131072 16 64 4096 1 - 1168768 - " > ./results/cachesim_result_29347_$t.txt
./cachesim $t 32 131072 16 64 4096 1 >> ./results/cachesim_result_29347_$t.txt &
echo -n "$t 32 131072 16 128 4096 1 - 1168064 - " > ./results/cachesim_result_29348_$t.txt
./cachesim $t 32 131072 16 128 4096 1 >> ./results/cachesim_result_29348_$t.txt &
echo -n "$t 32 131072 16 256 4096 1 - 1167712 - " > ./results/cachesim_result_29349_$t.txt
./cachesim $t 32 131072 16 256 4096 1 >> ./results/cachesim_result_29349_$t.txt &
echo -n "$t 32 131072 16 512 4096 1 - 1167536 - " > ./results/cachesim_result_29350_$t.txt
./cachesim $t 32 131072 16 512 4096 1 >> ./results/cachesim_result_29350_$t.txt &
echo -n "$t 32 131072 16 1024 4096 1 - 1167448 - " > ./results/cachesim_result_29351_$t.txt
./cachesim $t 32 131072 16 1024 4096 1 >> ./results/cachesim_result_29351_$t.txt &
echo -n "$t 32 131072 16 32 4096 2 - 1170304 - " > ./results/cachesim_result_29352_$t.txt
./cachesim $t 32 131072 16 32 4096 2 >> ./results/cachesim_result_29352_$t.txt &
echo -n "$t 32 131072 16 64 4096 2 - 1168832 - " > ./results/cachesim_result_29353_$t.txt
./cachesim $t 32 131072 16 64 4096 2 >> ./results/cachesim_result_29353_$t.txt &
echo -n "$t 32 131072 16 128 4096 2 - 1168096 - " > ./results/cachesim_result_29354_$t.txt
./cachesim $t 32 131072 16 128 4096 2 >> ./results/cachesim_result_29354_$t.txt &
echo -n "$t 32 131072 16 256 4096 2 - 1167728 - " > ./results/cachesim_result_29355_$t.txt
./cachesim $t 32 131072 16 256 4096 2 >> ./results/cachesim_result_29355_$t.txt &
echo -n "$t 32 131072 16 512 4096 2 - 1167544 - " > ./results/cachesim_result_29356_$t.txt
./cachesim $t 32 131072 16 512 4096 2 >> ./results/cachesim_result_29356_$t.txt &
echo -n "$t 32 131072 16 1024 4096 2 - 1167452 - " > ./results/cachesim_result_29357_$t.txt
./cachesim $t 32 131072 16 1024 4096 2 >> ./results/cachesim_result_29357_$t.txt &
echo -n "$t 32 131072 16 32 4096 4 - 1170432 - " > ./results/cachesim_result_29358_$t.txt
./cachesim $t 32 131072 16 32 4096 4 >> ./results/cachesim_result_29358_$t.txt &
echo -n "$t 32 131072 16 64 4096 4 - 1168896 - " > ./results/cachesim_result_29359_$t.txt
./cachesim $t 32 131072 16 64 4096 4 >> ./results/cachesim_result_29359_$t.txt &
echo -n "$t 32 131072 16 128 4096 4 - 1168128 - " > ./results/cachesim_result_29360_$t.txt
./cachesim $t 32 131072 16 128 4096 4 >> ./results/cachesim_result_29360_$t.txt &
echo -n "$t 32 131072 16 256 4096 4 - 1167744 - " > ./results/cachesim_result_29361_$t.txt
./cachesim $t 32 131072 16 256 4096 4 >> ./results/cachesim_result_29361_$t.txt &
echo -n "$t 32 131072 16 512 4096 4 - 1167552 - " > ./results/cachesim_result_29362_$t.txt
./cachesim $t 32 131072 16 512 4096 4 >> ./results/cachesim_result_29362_$t.txt &
echo -n "$t 32 131072 16 1024 4096 4 - 1167456 - " > ./results/cachesim_result_29363_$t.txt
./cachesim $t 32 131072 16 1024 4096 4 >> ./results/cachesim_result_29363_$t.txt &
echo -n "$t 32 131072 16 32 4096 8 - 1170560 - " > ./results/cachesim_result_29364_$t.txt
./cachesim $t 32 131072 16 32 4096 8 >> ./results/cachesim_result_29364_$t.txt &
echo -n "$t 32 131072 16 64 4096 8 - 1168960 - " > ./results/cachesim_result_29365_$t.txt
./cachesim $t 32 131072 16 64 4096 8 >> ./results/cachesim_result_29365_$t.txt &
echo -n "$t 32 131072 16 128 4096 8 - 1168160 - " > ./results/cachesim_result_29366_$t.txt
./cachesim $t 32 131072 16 128 4096 8 >> ./results/cachesim_result_29366_$t.txt &
echo -n "$t 32 131072 16 256 4096 8 - 1167760 - " > ./results/cachesim_result_29367_$t.txt
./cachesim $t 32 131072 16 256 4096 8 >> ./results/cachesim_result_29367_$t.txt &
echo -n "$t 32 131072 16 512 4096 8 - 1167560 - " > ./results/cachesim_result_29368_$t.txt
./cachesim $t 32 131072 16 512 4096 8 >> ./results/cachesim_result_29368_$t.txt &
echo -n "$t 32 131072 16 32 4096 16 - 1170688 - " > ./results/cachesim_result_29369_$t.txt
./cachesim $t 32 131072 16 32 4096 16 >> ./results/cachesim_result_29369_$t.txt &
echo -n "$t 32 131072 16 64 4096 16 - 1169024 - " > ./results/cachesim_result_29370_$t.txt
./cachesim $t 32 131072 16 64 4096 16 >> ./results/cachesim_result_29370_$t.txt &
echo -n "$t 32 131072 16 128 4096 16 - 1168192 - " > ./results/cachesim_result_29371_$t.txt
./cachesim $t 32 131072 16 128 4096 16 >> ./results/cachesim_result_29371_$t.txt &
echo -n "$t 32 131072 16 256 4096 16 - 1167776 - " > ./results/cachesim_result_29372_$t.txt
./cachesim $t 32 131072 16 256 4096 16 >> ./results/cachesim_result_29372_$t.txt &
echo -n "$t 32 131072 16 32 4096 32 - 1170816 - " > ./results/cachesim_result_29373_$t.txt
./cachesim $t 32 131072 16 32 4096 32 >> ./results/cachesim_result_29373_$t.txt &
echo -n "$t 32 131072 16 64 4096 32 - 1169088 - " > ./results/cachesim_result_29374_$t.txt
./cachesim $t 32 131072 16 64 4096 32 >> ./results/cachesim_result_29374_$t.txt &
echo -n "$t 32 131072 16 128 4096 32 - 1168224 - " > ./results/cachesim_result_29375_$t.txt
./cachesim $t 32 131072 16 128 4096 32 >> ./results/cachesim_result_29375_$t.txt &
echo -n "$t 32 131072 16 32 8192 1 - 1205504 - " > ./results/cachesim_result_29376_$t.txt
./cachesim $t 32 131072 16 32 8192 1 >> ./results/cachesim_result_29376_$t.txt &
echo -n "$t 32 131072 16 64 8192 1 - 1202816 - " > ./results/cachesim_result_29377_$t.txt
./cachesim $t 32 131072 16 64 8192 1 >> ./results/cachesim_result_29377_$t.txt &
echo -n "$t 32 131072 16 128 8192 1 - 1201472 - " > ./results/cachesim_result_29378_$t.txt
./cachesim $t 32 131072 16 128 8192 1 >> ./results/cachesim_result_29378_$t.txt &
echo -n "$t 32 131072 16 256 8192 1 - 1200800 - " > ./results/cachesim_result_29379_$t.txt
./cachesim $t 32 131072 16 256 8192 1 >> ./results/cachesim_result_29379_$t.txt &
echo -n "$t 32 131072 16 512 8192 1 - 1200464 - " > ./results/cachesim_result_29380_$t.txt
./cachesim $t 32 131072 16 512 8192 1 >> ./results/cachesim_result_29380_$t.txt &
echo -n "$t 32 131072 16 1024 8192 1 - 1200296 - " > ./results/cachesim_result_29381_$t.txt
./cachesim $t 32 131072 16 1024 8192 1 >> ./results/cachesim_result_29381_$t.txt &
echo -n "$t 32 131072 16 32 8192 2 - 1205760 - " > ./results/cachesim_result_29382_$t.txt
./cachesim $t 32 131072 16 32 8192 2 >> ./results/cachesim_result_29382_$t.txt &
echo -n "$t 32 131072 16 64 8192 2 - 1202944 - " > ./results/cachesim_result_29383_$t.txt
./cachesim $t 32 131072 16 64 8192 2 >> ./results/cachesim_result_29383_$t.txt &
echo -n "$t 32 131072 16 128 8192 2 - 1201536 - " > ./results/cachesim_result_29384_$t.txt
./cachesim $t 32 131072 16 128 8192 2 >> ./results/cachesim_result_29384_$t.txt &
echo -n "$t 32 131072 16 256 8192 2 - 1200832 - " > ./results/cachesim_result_29385_$t.txt
./cachesim $t 32 131072 16 256 8192 2 >> ./results/cachesim_result_29385_$t.txt &
echo -n "$t 32 131072 16 512 8192 2 - 1200480 - " > ./results/cachesim_result_29386_$t.txt
./cachesim $t 32 131072 16 512 8192 2 >> ./results/cachesim_result_29386_$t.txt &
echo -n "$t 32 131072 16 1024 8192 2 - 1200304 - " > ./results/cachesim_result_29387_$t.txt
./cachesim $t 32 131072 16 1024 8192 2 >> ./results/cachesim_result_29387_$t.txt &
echo -n "$t 32 131072 16 32 8192 4 - 1206016 - " > ./results/cachesim_result_29388_$t.txt
./cachesim $t 32 131072 16 32 8192 4 >> ./results/cachesim_result_29388_$t.txt &
echo -n "$t 32 131072 16 64 8192 4 - 1203072 - " > ./results/cachesim_result_29389_$t.txt
./cachesim $t 32 131072 16 64 8192 4 >> ./results/cachesim_result_29389_$t.txt &
echo -n "$t 32 131072 16 128 8192 4 - 1201600 - " > ./results/cachesim_result_29390_$t.txt
./cachesim $t 32 131072 16 128 8192 4 >> ./results/cachesim_result_29390_$t.txt &
echo -n "$t 32 131072 16 256 8192 4 - 1200864 - " > ./results/cachesim_result_29391_$t.txt
./cachesim $t 32 131072 16 256 8192 4 >> ./results/cachesim_result_29391_$t.txt &
echo -n "$t 32 131072 16 512 8192 4 - 1200496 - " > ./results/cachesim_result_29392_$t.txt
./cachesim $t 32 131072 16 512 8192 4 >> ./results/cachesim_result_29392_$t.txt &
echo -n "$t 32 131072 16 1024 8192 4 - 1200312 - " > ./results/cachesim_result_29393_$t.txt
./cachesim $t 32 131072 16 1024 8192 4 >> ./results/cachesim_result_29393_$t.txt &
echo -n "$t 32 131072 16 32 8192 8 - 1206272 - " > ./results/cachesim_result_29394_$t.txt
./cachesim $t 32 131072 16 32 8192 8 >> ./results/cachesim_result_29394_$t.txt &
echo -n "$t 32 131072 16 64 8192 8 - 1203200 - " > ./results/cachesim_result_29395_$t.txt
./cachesim $t 32 131072 16 64 8192 8 >> ./results/cachesim_result_29395_$t.txt &
echo -n "$t 32 131072 16 128 8192 8 - 1201664 - " > ./results/cachesim_result_29396_$t.txt
./cachesim $t 32 131072 16 128 8192 8 >> ./results/cachesim_result_29396_$t.txt &
echo -n "$t 32 131072 16 256 8192 8 - 1200896 - " > ./results/cachesim_result_29397_$t.txt
./cachesim $t 32 131072 16 256 8192 8 >> ./results/cachesim_result_29397_$t.txt &
echo -n "$t 32 131072 16 512 8192 8 - 1200512 - " > ./results/cachesim_result_29398_$t.txt
./cachesim $t 32 131072 16 512 8192 8 >> ./results/cachesim_result_29398_$t.txt &
echo -n "$t 32 131072 16 1024 8192 8 - 1200320 - " > ./results/cachesim_result_29399_$t.txt
./cachesim $t 32 131072 16 1024 8192 8 >> ./results/cachesim_result_29399_$t.txt &
echo -n "$t 32 131072 16 32 8192 16 - 1206528 - " > ./results/cachesim_result_29400_$t.txt
./cachesim $t 32 131072 16 32 8192 16 >> ./results/cachesim_result_29400_$t.txt &
echo -n "$t 32 131072 16 64 8192 16 - 1203328 - " > ./results/cachesim_result_29401_$t.txt
./cachesim $t 32 131072 16 64 8192 16 >> ./results/cachesim_result_29401_$t.txt &
echo -n "$t 32 131072 16 128 8192 16 - 1201728 - " > ./results/cachesim_result_29402_$t.txt
./cachesim $t 32 131072 16 128 8192 16 >> ./results/cachesim_result_29402_$t.txt &
echo -n "$t 32 131072 16 256 8192 16 - 1200928 - " > ./results/cachesim_result_29403_$t.txt
./cachesim $t 32 131072 16 256 8192 16 >> ./results/cachesim_result_29403_$t.txt &
echo -n "$t 32 131072 16 512 8192 16 - 1200528 - " > ./results/cachesim_result_29404_$t.txt
./cachesim $t 32 131072 16 512 8192 16 >> ./results/cachesim_result_29404_$t.txt &
echo -n "$t 32 131072 16 32 8192 32 - 1206784 - " > ./results/cachesim_result_29405_$t.txt
./cachesim $t 32 131072 16 32 8192 32 >> ./results/cachesim_result_29405_$t.txt &
echo -n "$t 32 131072 16 64 8192 32 - 1203456 - " > ./results/cachesim_result_29406_$t.txt
./cachesim $t 32 131072 16 64 8192 32 >> ./results/cachesim_result_29406_$t.txt &
echo -n "$t 32 131072 16 128 8192 32 - 1201792 - " > ./results/cachesim_result_29407_$t.txt
./cachesim $t 32 131072 16 128 8192 32 >> ./results/cachesim_result_29407_$t.txt &
echo -n "$t 32 131072 16 256 8192 32 - 1200960 - " > ./results/cachesim_result_29408_$t.txt
./cachesim $t 32 131072 16 256 8192 32 >> ./results/cachesim_result_29408_$t.txt &
echo -n "$t 32 131072 16 32 16384 1 - 1275904 - " > ./results/cachesim_result_29409_$t.txt
./cachesim $t 32 131072 16 32 16384 1 >> ./results/cachesim_result_29409_$t.txt &
echo -n "$t 32 131072 16 64 16384 1 - 1270784 - " > ./results/cachesim_result_29410_$t.txt
./cachesim $t 32 131072 16 64 16384 1 >> ./results/cachesim_result_29410_$t.txt &
echo -n "$t 32 131072 16 128 16384 1 - 1268224 - " > ./results/cachesim_result_29411_$t.txt
./cachesim $t 32 131072 16 128 16384 1 >> ./results/cachesim_result_29411_$t.txt &
echo -n "$t 32 131072 16 256 16384 1 - 1266944 - " > ./results/cachesim_result_29412_$t.txt
./cachesim $t 32 131072 16 256 16384 1 >> ./results/cachesim_result_29412_$t.txt &
echo -n "$t 32 131072 16 512 16384 1 - 1266304 - " > ./results/cachesim_result_29413_$t.txt
./cachesim $t 32 131072 16 512 16384 1 >> ./results/cachesim_result_29413_$t.txt &
echo -n "$t 32 131072 16 1024 16384 1 - 1265984 - " > ./results/cachesim_result_29414_$t.txt
./cachesim $t 32 131072 16 1024 16384 1 >> ./results/cachesim_result_29414_$t.txt &
echo -n "$t 32 131072 16 32 16384 2 - 1276416 - " > ./results/cachesim_result_29415_$t.txt
./cachesim $t 32 131072 16 32 16384 2 >> ./results/cachesim_result_29415_$t.txt &
echo -n "$t 32 131072 16 64 16384 2 - 1271040 - " > ./results/cachesim_result_29416_$t.txt
./cachesim $t 32 131072 16 64 16384 2 >> ./results/cachesim_result_29416_$t.txt &
echo -n "$t 32 131072 16 128 16384 2 - 1268352 - " > ./results/cachesim_result_29417_$t.txt
./cachesim $t 32 131072 16 128 16384 2 >> ./results/cachesim_result_29417_$t.txt &
echo -n "$t 32 131072 16 256 16384 2 - 1267008 - " > ./results/cachesim_result_29418_$t.txt
./cachesim $t 32 131072 16 256 16384 2 >> ./results/cachesim_result_29418_$t.txt &
echo -n "$t 32 131072 16 512 16384 2 - 1266336 - " > ./results/cachesim_result_29419_$t.txt
./cachesim $t 32 131072 16 512 16384 2 >> ./results/cachesim_result_29419_$t.txt &
echo -n "$t 32 131072 16 1024 16384 2 - 1266000 - " > ./results/cachesim_result_29420_$t.txt
./cachesim $t 32 131072 16 1024 16384 2 >> ./results/cachesim_result_29420_$t.txt &
echo -n "$t 32 131072 16 32 16384 4 - 1276928 - " > ./results/cachesim_result_29421_$t.txt
./cachesim $t 32 131072 16 32 16384 4 >> ./results/cachesim_result_29421_$t.txt &
echo -n "$t 32 131072 16 64 16384 4 - 1271296 - " > ./results/cachesim_result_29422_$t.txt
./cachesim $t 32 131072 16 64 16384 4 >> ./results/cachesim_result_29422_$t.txt &
echo -n "$t 32 131072 16 128 16384 4 - 1268480 - " > ./results/cachesim_result_29423_$t.txt
./cachesim $t 32 131072 16 128 16384 4 >> ./results/cachesim_result_29423_$t.txt &
echo -n "$t 32 131072 16 256 16384 4 - 1267072 - " > ./results/cachesim_result_29424_$t.txt
./cachesim $t 32 131072 16 256 16384 4 >> ./results/cachesim_result_29424_$t.txt &
echo -n "$t 32 131072 16 512 16384 4 - 1266368 - " > ./results/cachesim_result_29425_$t.txt
./cachesim $t 32 131072 16 512 16384 4 >> ./results/cachesim_result_29425_$t.txt &
echo -n "$t 32 131072 16 1024 16384 4 - 1266016 - " > ./results/cachesim_result_29426_$t.txt
./cachesim $t 32 131072 16 1024 16384 4 >> ./results/cachesim_result_29426_$t.txt &
echo -n "$t 32 131072 16 32 16384 8 - 1277440 - " > ./results/cachesim_result_29427_$t.txt
./cachesim $t 32 131072 16 32 16384 8 >> ./results/cachesim_result_29427_$t.txt &
echo -n "$t 32 131072 16 64 16384 8 - 1271552 - " > ./results/cachesim_result_29428_$t.txt
./cachesim $t 32 131072 16 64 16384 8 >> ./results/cachesim_result_29428_$t.txt &
echo -n "$t 32 131072 16 128 16384 8 - 1268608 - " > ./results/cachesim_result_29429_$t.txt
./cachesim $t 32 131072 16 128 16384 8 >> ./results/cachesim_result_29429_$t.txt &
echo -n "$t 32 131072 16 256 16384 8 - 1267136 - " > ./results/cachesim_result_29430_$t.txt
./cachesim $t 32 131072 16 256 16384 8 >> ./results/cachesim_result_29430_$t.txt &
echo -n "$t 32 131072 16 512 16384 8 - 1266400 - " > ./results/cachesim_result_29431_$t.txt
./cachesim $t 32 131072 16 512 16384 8 >> ./results/cachesim_result_29431_$t.txt &
echo -n "$t 32 131072 16 1024 16384 8 - 1266032 - " > ./results/cachesim_result_29432_$t.txt
./cachesim $t 32 131072 16 1024 16384 8 >> ./results/cachesim_result_29432_$t.txt &
echo -n "$t 32 131072 16 32 16384 16 - 1277952 - " > ./results/cachesim_result_29433_$t.txt
./cachesim $t 32 131072 16 32 16384 16 >> ./results/cachesim_result_29433_$t.txt &
echo -n "$t 32 131072 16 64 16384 16 - 1271808 - " > ./results/cachesim_result_29434_$t.txt
./cachesim $t 32 131072 16 64 16384 16 >> ./results/cachesim_result_29434_$t.txt &
echo -n "$t 32 131072 16 128 16384 16 - 1268736 - " > ./results/cachesim_result_29435_$t.txt
./cachesim $t 32 131072 16 128 16384 16 >> ./results/cachesim_result_29435_$t.txt &
echo -n "$t 32 131072 16 256 16384 16 - 1267200 - " > ./results/cachesim_result_29436_$t.txt
./cachesim $t 32 131072 16 256 16384 16 >> ./results/cachesim_result_29436_$t.txt &
echo -n "$t 32 131072 16 512 16384 16 - 1266432 - " > ./results/cachesim_result_29437_$t.txt
./cachesim $t 32 131072 16 512 16384 16 >> ./results/cachesim_result_29437_$t.txt &
echo -n "$t 32 131072 16 1024 16384 16 - 1266048 - " > ./results/cachesim_result_29438_$t.txt
./cachesim $t 32 131072 16 1024 16384 16 >> ./results/cachesim_result_29438_$t.txt &
echo -n "$t 32 131072 16 32 16384 32 - 1278464 - " > ./results/cachesim_result_29439_$t.txt
./cachesim $t 32 131072 16 32 16384 32 >> ./results/cachesim_result_29439_$t.txt &
echo -n "$t 32 131072 16 64 16384 32 - 1272064 - " > ./results/cachesim_result_29440_$t.txt
./cachesim $t 32 131072 16 64 16384 32 >> ./results/cachesim_result_29440_$t.txt &
echo -n "$t 32 131072 16 128 16384 32 - 1268864 - " > ./results/cachesim_result_29441_$t.txt
./cachesim $t 32 131072 16 128 16384 32 >> ./results/cachesim_result_29441_$t.txt &
echo -n "$t 32 131072 16 256 16384 32 - 1267264 - " > ./results/cachesim_result_29442_$t.txt
./cachesim $t 32 131072 16 256 16384 32 >> ./results/cachesim_result_29442_$t.txt &
echo -n "$t 32 131072 16 512 16384 32 - 1266464 - " > ./results/cachesim_result_29443_$t.txt
./cachesim $t 32 131072 16 512 16384 32 >> ./results/cachesim_result_29443_$t.txt &
echo -n "$t 32 131072 16 32 32768 1 - 1416192 - " > ./results/cachesim_result_29444_$t.txt
./cachesim $t 32 131072 16 32 32768 1 >> ./results/cachesim_result_29444_$t.txt &
echo -n "$t 32 131072 16 64 32768 1 - 1406464 - " > ./results/cachesim_result_29445_$t.txt
./cachesim $t 32 131072 16 64 32768 1 >> ./results/cachesim_result_29445_$t.txt &
echo -n "$t 32 131072 16 128 32768 1 - 1401600 - " > ./results/cachesim_result_29446_$t.txt
./cachesim $t 32 131072 16 128 32768 1 >> ./results/cachesim_result_29446_$t.txt &
echo -n "$t 32 131072 16 256 32768 1 - 1399168 - " > ./results/cachesim_result_29447_$t.txt
./cachesim $t 32 131072 16 256 32768 1 >> ./results/cachesim_result_29447_$t.txt &
echo -n "$t 32 131072 16 512 32768 1 - 1397952 - " > ./results/cachesim_result_29448_$t.txt
./cachesim $t 32 131072 16 512 32768 1 >> ./results/cachesim_result_29448_$t.txt &
echo -n "$t 32 131072 16 1024 32768 1 - 1397344 - " > ./results/cachesim_result_29449_$t.txt
./cachesim $t 32 131072 16 1024 32768 1 >> ./results/cachesim_result_29449_$t.txt &
echo -n "$t 32 131072 16 32 32768 2 - 1417216 - " > ./results/cachesim_result_29450_$t.txt
./cachesim $t 32 131072 16 32 32768 2 >> ./results/cachesim_result_29450_$t.txt &
echo -n "$t 32 131072 16 64 32768 2 - 1406976 - " > ./results/cachesim_result_29451_$t.txt
./cachesim $t 32 131072 16 64 32768 2 >> ./results/cachesim_result_29451_$t.txt &
echo -n "$t 32 131072 16 128 32768 2 - 1401856 - " > ./results/cachesim_result_29452_$t.txt
./cachesim $t 32 131072 16 128 32768 2 >> ./results/cachesim_result_29452_$t.txt &
echo -n "$t 32 131072 16 256 32768 2 - 1399296 - " > ./results/cachesim_result_29453_$t.txt
./cachesim $t 32 131072 16 256 32768 2 >> ./results/cachesim_result_29453_$t.txt &
echo -n "$t 32 131072 16 512 32768 2 - 1398016 - " > ./results/cachesim_result_29454_$t.txt
./cachesim $t 32 131072 16 512 32768 2 >> ./results/cachesim_result_29454_$t.txt &
echo -n "$t 32 131072 16 1024 32768 2 - 1397376 - " > ./results/cachesim_result_29455_$t.txt
./cachesim $t 32 131072 16 1024 32768 2 >> ./results/cachesim_result_29455_$t.txt &
echo -n "$t 32 131072 16 32 32768 4 - 1418240 - " > ./results/cachesim_result_29456_$t.txt
./cachesim $t 32 131072 16 32 32768 4 >> ./results/cachesim_result_29456_$t.txt &
echo -n "$t 32 131072 16 64 32768 4 - 1407488 - " > ./results/cachesim_result_29457_$t.txt
./cachesim $t 32 131072 16 64 32768 4 >> ./results/cachesim_result_29457_$t.txt &
echo -n "$t 32 131072 16 128 32768 4 - 1402112 - " > ./results/cachesim_result_29458_$t.txt
./cachesim $t 32 131072 16 128 32768 4 >> ./results/cachesim_result_29458_$t.txt &
echo -n "$t 32 131072 16 256 32768 4 - 1399424 - " > ./results/cachesim_result_29459_$t.txt
./cachesim $t 32 131072 16 256 32768 4 >> ./results/cachesim_result_29459_$t.txt &
echo -n "$t 32 131072 16 512 32768 4 - 1398080 - " > ./results/cachesim_result_29460_$t.txt
./cachesim $t 32 131072 16 512 32768 4 >> ./results/cachesim_result_29460_$t.txt &
echo -n "$t 32 131072 16 1024 32768 4 - 1397408 - " > ./results/cachesim_result_29461_$t.txt
./cachesim $t 32 131072 16 1024 32768 4 >> ./results/cachesim_result_29461_$t.txt &
echo -n "$t 32 131072 16 32 32768 8 - 1419264 - " > ./results/cachesim_result_29462_$t.txt
./cachesim $t 32 131072 16 32 32768 8 >> ./results/cachesim_result_29462_$t.txt &
echo -n "$t 32 131072 16 64 32768 8 - 1408000 - " > ./results/cachesim_result_29463_$t.txt
./cachesim $t 32 131072 16 64 32768 8 >> ./results/cachesim_result_29463_$t.txt &
echo -n "$t 32 131072 16 128 32768 8 - 1402368 - " > ./results/cachesim_result_29464_$t.txt
./cachesim $t 32 131072 16 128 32768 8 >> ./results/cachesim_result_29464_$t.txt &
echo -n "$t 32 131072 16 256 32768 8 - 1399552 - " > ./results/cachesim_result_29465_$t.txt
./cachesim $t 32 131072 16 256 32768 8 >> ./results/cachesim_result_29465_$t.txt &
echo -n "$t 32 131072 16 512 32768 8 - 1398144 - " > ./results/cachesim_result_29466_$t.txt
./cachesim $t 32 131072 16 512 32768 8 >> ./results/cachesim_result_29466_$t.txt &
echo -n "$t 32 131072 16 1024 32768 8 - 1397440 - " > ./results/cachesim_result_29467_$t.txt
./cachesim $t 32 131072 16 1024 32768 8 >> ./results/cachesim_result_29467_$t.txt &
echo -n "$t 32 131072 16 32 32768 16 - 1420288 - " > ./results/cachesim_result_29468_$t.txt
./cachesim $t 32 131072 16 32 32768 16 >> ./results/cachesim_result_29468_$t.txt &
echo -n "$t 32 131072 16 64 32768 16 - 1408512 - " > ./results/cachesim_result_29469_$t.txt
./cachesim $t 32 131072 16 64 32768 16 >> ./results/cachesim_result_29469_$t.txt &
echo -n "$t 32 131072 16 128 32768 16 - 1402624 - " > ./results/cachesim_result_29470_$t.txt
./cachesim $t 32 131072 16 128 32768 16 >> ./results/cachesim_result_29470_$t.txt &
echo -n "$t 32 131072 16 256 32768 16 - 1399680 - " > ./results/cachesim_result_29471_$t.txt
./cachesim $t 32 131072 16 256 32768 16 >> ./results/cachesim_result_29471_$t.txt &
echo -n "$t 32 131072 16 512 32768 16 - 1398208 - " > ./results/cachesim_result_29472_$t.txt
./cachesim $t 32 131072 16 512 32768 16 >> ./results/cachesim_result_29472_$t.txt &
echo -n "$t 32 131072 16 1024 32768 16 - 1397472 - " > ./results/cachesim_result_29473_$t.txt
./cachesim $t 32 131072 16 1024 32768 16 >> ./results/cachesim_result_29473_$t.txt &
echo -n "$t 32 131072 16 32 32768 32 - 1421312 - " > ./results/cachesim_result_29474_$t.txt
./cachesim $t 32 131072 16 32 32768 32 >> ./results/cachesim_result_29474_$t.txt &
echo -n "$t 32 131072 16 64 32768 32 - 1409024 - " > ./results/cachesim_result_29475_$t.txt
./cachesim $t 32 131072 16 64 32768 32 >> ./results/cachesim_result_29475_$t.txt &
echo -n "$t 32 131072 16 128 32768 32 - 1402880 - " > ./results/cachesim_result_29476_$t.txt
./cachesim $t 32 131072 16 128 32768 32 >> ./results/cachesim_result_29476_$t.txt &
echo -n "$t 32 131072 16 256 32768 32 - 1399808 - " > ./results/cachesim_result_29477_$t.txt
./cachesim $t 32 131072 16 256 32768 32 >> ./results/cachesim_result_29477_$t.txt &
echo -n "$t 32 131072 16 512 32768 32 - 1398272 - " > ./results/cachesim_result_29478_$t.txt
./cachesim $t 32 131072 16 512 32768 32 >> ./results/cachesim_result_29478_$t.txt &
echo -n "$t 32 131072 16 1024 32768 32 - 1397504 - " > ./results/cachesim_result_29479_$t.txt
./cachesim $t 32 131072 16 1024 32768 32 >> ./results/cachesim_result_29479_$t.txt &
echo -n "$t 64 131072 16 64 4096 1 - 1125760 - " > ./results/cachesim_result_29480_$t.txt
./cachesim $t 64 131072 16 64 4096 1 >> ./results/cachesim_result_29480_$t.txt &
echo -n "$t 64 131072 16 128 4096 1 - 1125056 - " > ./results/cachesim_result_29481_$t.txt
./cachesim $t 64 131072 16 128 4096 1 >> ./results/cachesim_result_29481_$t.txt &
echo -n "$t 64 131072 16 256 4096 1 - 1124704 - " > ./results/cachesim_result_29482_$t.txt
./cachesim $t 64 131072 16 256 4096 1 >> ./results/cachesim_result_29482_$t.txt &
echo -n "$t 64 131072 16 512 4096 1 - 1124528 - " > ./results/cachesim_result_29483_$t.txt
./cachesim $t 64 131072 16 512 4096 1 >> ./results/cachesim_result_29483_$t.txt &
echo -n "$t 64 131072 16 1024 4096 1 - 1124440 - " > ./results/cachesim_result_29484_$t.txt
./cachesim $t 64 131072 16 1024 4096 1 >> ./results/cachesim_result_29484_$t.txt &
echo -n "$t 64 131072 16 64 4096 2 - 1125824 - " > ./results/cachesim_result_29485_$t.txt
./cachesim $t 64 131072 16 64 4096 2 >> ./results/cachesim_result_29485_$t.txt &
echo -n "$t 64 131072 16 128 4096 2 - 1125088 - " > ./results/cachesim_result_29486_$t.txt
./cachesim $t 64 131072 16 128 4096 2 >> ./results/cachesim_result_29486_$t.txt &
echo -n "$t 64 131072 16 256 4096 2 - 1124720 - " > ./results/cachesim_result_29487_$t.txt
./cachesim $t 64 131072 16 256 4096 2 >> ./results/cachesim_result_29487_$t.txt &
echo -n "$t 64 131072 16 512 4096 2 - 1124536 - " > ./results/cachesim_result_29488_$t.txt
./cachesim $t 64 131072 16 512 4096 2 >> ./results/cachesim_result_29488_$t.txt &
echo -n "$t 64 131072 16 1024 4096 2 - 1124444 - " > ./results/cachesim_result_29489_$t.txt
./cachesim $t 64 131072 16 1024 4096 2 >> ./results/cachesim_result_29489_$t.txt &
echo -n "$t 64 131072 16 64 4096 4 - 1125888 - " > ./results/cachesim_result_29490_$t.txt
./cachesim $t 64 131072 16 64 4096 4 >> ./results/cachesim_result_29490_$t.txt &
echo -n "$t 64 131072 16 128 4096 4 - 1125120 - " > ./results/cachesim_result_29491_$t.txt
./cachesim $t 64 131072 16 128 4096 4 >> ./results/cachesim_result_29491_$t.txt &
echo -n "$t 64 131072 16 256 4096 4 - 1124736 - " > ./results/cachesim_result_29492_$t.txt
./cachesim $t 64 131072 16 256 4096 4 >> ./results/cachesim_result_29492_$t.txt &
echo -n "$t 64 131072 16 512 4096 4 - 1124544 - " > ./results/cachesim_result_29493_$t.txt
./cachesim $t 64 131072 16 512 4096 4 >> ./results/cachesim_result_29493_$t.txt &
echo -n "$t 64 131072 16 1024 4096 4 - 1124448 - " > ./results/cachesim_result_29494_$t.txt
./cachesim $t 64 131072 16 1024 4096 4 >> ./results/cachesim_result_29494_$t.txt &
echo -n "$t 64 131072 16 64 4096 8 - 1125952 - " > ./results/cachesim_result_29495_$t.txt
./cachesim $t 64 131072 16 64 4096 8 >> ./results/cachesim_result_29495_$t.txt &
echo -n "$t 64 131072 16 128 4096 8 - 1125152 - " > ./results/cachesim_result_29496_$t.txt
./cachesim $t 64 131072 16 128 4096 8 >> ./results/cachesim_result_29496_$t.txt &
echo -n "$t 64 131072 16 256 4096 8 - 1124752 - " > ./results/cachesim_result_29497_$t.txt
./cachesim $t 64 131072 16 256 4096 8 >> ./results/cachesim_result_29497_$t.txt &
echo -n "$t 64 131072 16 512 4096 8 - 1124552 - " > ./results/cachesim_result_29498_$t.txt
./cachesim $t 64 131072 16 512 4096 8 >> ./results/cachesim_result_29498_$t.txt &
echo -n "$t 64 131072 16 64 4096 16 - 1126016 - " > ./results/cachesim_result_29499_$t.txt
./cachesim $t 64 131072 16 64 4096 16 >> ./results/cachesim_result_29499_$t.txt &
echo -n "$t 64 131072 16 128 4096 16 - 1125184 - " > ./results/cachesim_result_29500_$t.txt
./cachesim $t 64 131072 16 128 4096 16 >> ./results/cachesim_result_29500_$t.txt &
echo -n "$t 64 131072 16 256 4096 16 - 1124768 - " > ./results/cachesim_result_29501_$t.txt
./cachesim $t 64 131072 16 256 4096 16 >> ./results/cachesim_result_29501_$t.txt &
echo -n "$t 64 131072 16 64 4096 32 - 1126080 - " > ./results/cachesim_result_29502_$t.txt
./cachesim $t 64 131072 16 64 4096 32 >> ./results/cachesim_result_29502_$t.txt &
echo -n "$t 64 131072 16 128 4096 32 - 1125216 - " > ./results/cachesim_result_29503_$t.txt
./cachesim $t 64 131072 16 128 4096 32 >> ./results/cachesim_result_29503_$t.txt &
echo -n "$t 64 131072 16 64 8192 1 - 1159808 - " > ./results/cachesim_result_29504_$t.txt
./cachesim $t 64 131072 16 64 8192 1 >> ./results/cachesim_result_29504_$t.txt &
echo -n "$t 64 131072 16 128 8192 1 - 1158464 - " > ./results/cachesim_result_29505_$t.txt
./cachesim $t 64 131072 16 128 8192 1 >> ./results/cachesim_result_29505_$t.txt &
echo -n "$t 64 131072 16 256 8192 1 - 1157792 - " > ./results/cachesim_result_29506_$t.txt
./cachesim $t 64 131072 16 256 8192 1 >> ./results/cachesim_result_29506_$t.txt &
echo -n "$t 64 131072 16 512 8192 1 - 1157456 - " > ./results/cachesim_result_29507_$t.txt
./cachesim $t 64 131072 16 512 8192 1 >> ./results/cachesim_result_29507_$t.txt &
echo -n "$t 64 131072 16 1024 8192 1 - 1157288 - " > ./results/cachesim_result_29508_$t.txt
./cachesim $t 64 131072 16 1024 8192 1 >> ./results/cachesim_result_29508_$t.txt &
echo -n "$t 64 131072 16 64 8192 2 - 1159936 - " > ./results/cachesim_result_29509_$t.txt
./cachesim $t 64 131072 16 64 8192 2 >> ./results/cachesim_result_29509_$t.txt &
echo -n "$t 64 131072 16 128 8192 2 - 1158528 - " > ./results/cachesim_result_29510_$t.txt
./cachesim $t 64 131072 16 128 8192 2 >> ./results/cachesim_result_29510_$t.txt &
echo -n "$t 64 131072 16 256 8192 2 - 1157824 - " > ./results/cachesim_result_29511_$t.txt
./cachesim $t 64 131072 16 256 8192 2 >> ./results/cachesim_result_29511_$t.txt &
echo -n "$t 64 131072 16 512 8192 2 - 1157472 - " > ./results/cachesim_result_29512_$t.txt
./cachesim $t 64 131072 16 512 8192 2 >> ./results/cachesim_result_29512_$t.txt &
echo -n "$t 64 131072 16 1024 8192 2 - 1157296 - " > ./results/cachesim_result_29513_$t.txt
./cachesim $t 64 131072 16 1024 8192 2 >> ./results/cachesim_result_29513_$t.txt &
echo -n "$t 64 131072 16 64 8192 4 - 1160064 - " > ./results/cachesim_result_29514_$t.txt
./cachesim $t 64 131072 16 64 8192 4 >> ./results/cachesim_result_29514_$t.txt &
echo -n "$t 64 131072 16 128 8192 4 - 1158592 - " > ./results/cachesim_result_29515_$t.txt
./cachesim $t 64 131072 16 128 8192 4 >> ./results/cachesim_result_29515_$t.txt &
echo -n "$t 64 131072 16 256 8192 4 - 1157856 - " > ./results/cachesim_result_29516_$t.txt
./cachesim $t 64 131072 16 256 8192 4 >> ./results/cachesim_result_29516_$t.txt &
echo -n "$t 64 131072 16 512 8192 4 - 1157488 - " > ./results/cachesim_result_29517_$t.txt
./cachesim $t 64 131072 16 512 8192 4 >> ./results/cachesim_result_29517_$t.txt &
echo -n "$t 64 131072 16 1024 8192 4 - 1157304 - " > ./results/cachesim_result_29518_$t.txt
./cachesim $t 64 131072 16 1024 8192 4 >> ./results/cachesim_result_29518_$t.txt &
echo -n "$t 64 131072 16 64 8192 8 - 1160192 - " > ./results/cachesim_result_29519_$t.txt
./cachesim $t 64 131072 16 64 8192 8 >> ./results/cachesim_result_29519_$t.txt &
echo -n "$t 64 131072 16 128 8192 8 - 1158656 - " > ./results/cachesim_result_29520_$t.txt
./cachesim $t 64 131072 16 128 8192 8 >> ./results/cachesim_result_29520_$t.txt &
echo -n "$t 64 131072 16 256 8192 8 - 1157888 - " > ./results/cachesim_result_29521_$t.txt
./cachesim $t 64 131072 16 256 8192 8 >> ./results/cachesim_result_29521_$t.txt &
echo -n "$t 64 131072 16 512 8192 8 - 1157504 - " > ./results/cachesim_result_29522_$t.txt
./cachesim $t 64 131072 16 512 8192 8 >> ./results/cachesim_result_29522_$t.txt &
echo -n "$t 64 131072 16 1024 8192 8 - 1157312 - " > ./results/cachesim_result_29523_$t.txt
./cachesim $t 64 131072 16 1024 8192 8 >> ./results/cachesim_result_29523_$t.txt &
echo -n "$t 64 131072 16 64 8192 16 - 1160320 - " > ./results/cachesim_result_29524_$t.txt
./cachesim $t 64 131072 16 64 8192 16 >> ./results/cachesim_result_29524_$t.txt &
echo -n "$t 64 131072 16 128 8192 16 - 1158720 - " > ./results/cachesim_result_29525_$t.txt
./cachesim $t 64 131072 16 128 8192 16 >> ./results/cachesim_result_29525_$t.txt &
echo -n "$t 64 131072 16 256 8192 16 - 1157920 - " > ./results/cachesim_result_29526_$t.txt
./cachesim $t 64 131072 16 256 8192 16 >> ./results/cachesim_result_29526_$t.txt &
echo -n "$t 64 131072 16 512 8192 16 - 1157520 - " > ./results/cachesim_result_29527_$t.txt
./cachesim $t 64 131072 16 512 8192 16 >> ./results/cachesim_result_29527_$t.txt &
echo -n "$t 64 131072 16 64 8192 32 - 1160448 - " > ./results/cachesim_result_29528_$t.txt
./cachesim $t 64 131072 16 64 8192 32 >> ./results/cachesim_result_29528_$t.txt &
echo -n "$t 64 131072 16 128 8192 32 - 1158784 - " > ./results/cachesim_result_29529_$t.txt
./cachesim $t 64 131072 16 128 8192 32 >> ./results/cachesim_result_29529_$t.txt &
echo -n "$t 64 131072 16 256 8192 32 - 1157952 - " > ./results/cachesim_result_29530_$t.txt
./cachesim $t 64 131072 16 256 8192 32 >> ./results/cachesim_result_29530_$t.txt &
echo -n "$t 64 131072 16 64 16384 1 - 1227776 - " > ./results/cachesim_result_29531_$t.txt
./cachesim $t 64 131072 16 64 16384 1 >> ./results/cachesim_result_29531_$t.txt &
echo -n "$t 64 131072 16 128 16384 1 - 1225216 - " > ./results/cachesim_result_29532_$t.txt
./cachesim $t 64 131072 16 128 16384 1 >> ./results/cachesim_result_29532_$t.txt &
echo -n "$t 64 131072 16 256 16384 1 - 1223936 - " > ./results/cachesim_result_29533_$t.txt
./cachesim $t 64 131072 16 256 16384 1 >> ./results/cachesim_result_29533_$t.txt &
echo -n "$t 64 131072 16 512 16384 1 - 1223296 - " > ./results/cachesim_result_29534_$t.txt
./cachesim $t 64 131072 16 512 16384 1 >> ./results/cachesim_result_29534_$t.txt &
echo -n "$t 64 131072 16 1024 16384 1 - 1222976 - " > ./results/cachesim_result_29535_$t.txt
./cachesim $t 64 131072 16 1024 16384 1 >> ./results/cachesim_result_29535_$t.txt &
echo -n "$t 64 131072 16 64 16384 2 - 1228032 - " > ./results/cachesim_result_29536_$t.txt
./cachesim $t 64 131072 16 64 16384 2 >> ./results/cachesim_result_29536_$t.txt &
echo -n "$t 64 131072 16 128 16384 2 - 1225344 - " > ./results/cachesim_result_29537_$t.txt
./cachesim $t 64 131072 16 128 16384 2 >> ./results/cachesim_result_29537_$t.txt &
echo -n "$t 64 131072 16 256 16384 2 - 1224000 - " > ./results/cachesim_result_29538_$t.txt
./cachesim $t 64 131072 16 256 16384 2 >> ./results/cachesim_result_29538_$t.txt &
echo -n "$t 64 131072 16 512 16384 2 - 1223328 - " > ./results/cachesim_result_29539_$t.txt
./cachesim $t 64 131072 16 512 16384 2 >> ./results/cachesim_result_29539_$t.txt &
echo -n "$t 64 131072 16 1024 16384 2 - 1222992 - " > ./results/cachesim_result_29540_$t.txt
./cachesim $t 64 131072 16 1024 16384 2 >> ./results/cachesim_result_29540_$t.txt &
echo -n "$t 64 131072 16 64 16384 4 - 1228288 - " > ./results/cachesim_result_29541_$t.txt
./cachesim $t 64 131072 16 64 16384 4 >> ./results/cachesim_result_29541_$t.txt &
echo -n "$t 64 131072 16 128 16384 4 - 1225472 - " > ./results/cachesim_result_29542_$t.txt
./cachesim $t 64 131072 16 128 16384 4 >> ./results/cachesim_result_29542_$t.txt &
echo -n "$t 64 131072 16 256 16384 4 - 1224064 - " > ./results/cachesim_result_29543_$t.txt
./cachesim $t 64 131072 16 256 16384 4 >> ./results/cachesim_result_29543_$t.txt &
echo -n "$t 64 131072 16 512 16384 4 - 1223360 - " > ./results/cachesim_result_29544_$t.txt
./cachesim $t 64 131072 16 512 16384 4 >> ./results/cachesim_result_29544_$t.txt &
echo -n "$t 64 131072 16 1024 16384 4 - 1223008 - " > ./results/cachesim_result_29545_$t.txt
./cachesim $t 64 131072 16 1024 16384 4 >> ./results/cachesim_result_29545_$t.txt &
echo -n "$t 64 131072 16 64 16384 8 - 1228544 - " > ./results/cachesim_result_29546_$t.txt
./cachesim $t 64 131072 16 64 16384 8 >> ./results/cachesim_result_29546_$t.txt &
echo -n "$t 64 131072 16 128 16384 8 - 1225600 - " > ./results/cachesim_result_29547_$t.txt
./cachesim $t 64 131072 16 128 16384 8 >> ./results/cachesim_result_29547_$t.txt &
echo -n "$t 64 131072 16 256 16384 8 - 1224128 - " > ./results/cachesim_result_29548_$t.txt
./cachesim $t 64 131072 16 256 16384 8 >> ./results/cachesim_result_29548_$t.txt &
echo -n "$t 64 131072 16 512 16384 8 - 1223392 - " > ./results/cachesim_result_29549_$t.txt
./cachesim $t 64 131072 16 512 16384 8 >> ./results/cachesim_result_29549_$t.txt &
echo -n "$t 64 131072 16 1024 16384 8 - 1223024 - " > ./results/cachesim_result_29550_$t.txt
./cachesim $t 64 131072 16 1024 16384 8 >> ./results/cachesim_result_29550_$t.txt &
echo -n "$t 64 131072 16 64 16384 16 - 1228800 - " > ./results/cachesim_result_29551_$t.txt
./cachesim $t 64 131072 16 64 16384 16 >> ./results/cachesim_result_29551_$t.txt &
echo -n "$t 64 131072 16 128 16384 16 - 1225728 - " > ./results/cachesim_result_29552_$t.txt
./cachesim $t 64 131072 16 128 16384 16 >> ./results/cachesim_result_29552_$t.txt &
echo -n "$t 64 131072 16 256 16384 16 - 1224192 - " > ./results/cachesim_result_29553_$t.txt
./cachesim $t 64 131072 16 256 16384 16 >> ./results/cachesim_result_29553_$t.txt &
echo -n "$t 64 131072 16 512 16384 16 - 1223424 - " > ./results/cachesim_result_29554_$t.txt
./cachesim $t 64 131072 16 512 16384 16 >> ./results/cachesim_result_29554_$t.txt &
echo -n "$t 64 131072 16 1024 16384 16 - 1223040 - " > ./results/cachesim_result_29555_$t.txt
./cachesim $t 64 131072 16 1024 16384 16 >> ./results/cachesim_result_29555_$t.txt &
echo -n "$t 64 131072 16 64 16384 32 - 1229056 - " > ./results/cachesim_result_29556_$t.txt
./cachesim $t 64 131072 16 64 16384 32 >> ./results/cachesim_result_29556_$t.txt &
echo -n "$t 64 131072 16 128 16384 32 - 1225856 - " > ./results/cachesim_result_29557_$t.txt
./cachesim $t 64 131072 16 128 16384 32 >> ./results/cachesim_result_29557_$t.txt &
echo -n "$t 64 131072 16 256 16384 32 - 1224256 - " > ./results/cachesim_result_29558_$t.txt
./cachesim $t 64 131072 16 256 16384 32 >> ./results/cachesim_result_29558_$t.txt &
echo -n "$t 64 131072 16 512 16384 32 - 1223456 - " > ./results/cachesim_result_29559_$t.txt
./cachesim $t 64 131072 16 512 16384 32 >> ./results/cachesim_result_29559_$t.txt &
echo -n "$t 64 131072 16 64 32768 1 - 1363456 - " > ./results/cachesim_result_29560_$t.txt
./cachesim $t 64 131072 16 64 32768 1 >> ./results/cachesim_result_29560_$t.txt &
echo -n "$t 64 131072 16 128 32768 1 - 1358592 - " > ./results/cachesim_result_29561_$t.txt
./cachesim $t 64 131072 16 128 32768 1 >> ./results/cachesim_result_29561_$t.txt &
echo -n "$t 64 131072 16 256 32768 1 - 1356160 - " > ./results/cachesim_result_29562_$t.txt
./cachesim $t 64 131072 16 256 32768 1 >> ./results/cachesim_result_29562_$t.txt &
echo -n "$t 64 131072 16 512 32768 1 - 1354944 - " > ./results/cachesim_result_29563_$t.txt
./cachesim $t 64 131072 16 512 32768 1 >> ./results/cachesim_result_29563_$t.txt &
echo -n "$t 64 131072 16 1024 32768 1 - 1354336 - " > ./results/cachesim_result_29564_$t.txt
./cachesim $t 64 131072 16 1024 32768 1 >> ./results/cachesim_result_29564_$t.txt &
echo -n "$t 64 131072 16 64 32768 2 - 1363968 - " > ./results/cachesim_result_29565_$t.txt
./cachesim $t 64 131072 16 64 32768 2 >> ./results/cachesim_result_29565_$t.txt &
echo -n "$t 64 131072 16 128 32768 2 - 1358848 - " > ./results/cachesim_result_29566_$t.txt
./cachesim $t 64 131072 16 128 32768 2 >> ./results/cachesim_result_29566_$t.txt &
echo -n "$t 64 131072 16 256 32768 2 - 1356288 - " > ./results/cachesim_result_29567_$t.txt
./cachesim $t 64 131072 16 256 32768 2 >> ./results/cachesim_result_29567_$t.txt &
echo -n "$t 64 131072 16 512 32768 2 - 1355008 - " > ./results/cachesim_result_29568_$t.txt
./cachesim $t 64 131072 16 512 32768 2 >> ./results/cachesim_result_29568_$t.txt &
echo -n "$t 64 131072 16 1024 32768 2 - 1354368 - " > ./results/cachesim_result_29569_$t.txt
./cachesim $t 64 131072 16 1024 32768 2 >> ./results/cachesim_result_29569_$t.txt &
echo -n "$t 64 131072 16 64 32768 4 - 1364480 - " > ./results/cachesim_result_29570_$t.txt
./cachesim $t 64 131072 16 64 32768 4 >> ./results/cachesim_result_29570_$t.txt &
echo -n "$t 64 131072 16 128 32768 4 - 1359104 - " > ./results/cachesim_result_29571_$t.txt
./cachesim $t 64 131072 16 128 32768 4 >> ./results/cachesim_result_29571_$t.txt &
echo -n "$t 64 131072 16 256 32768 4 - 1356416 - " > ./results/cachesim_result_29572_$t.txt
./cachesim $t 64 131072 16 256 32768 4 >> ./results/cachesim_result_29572_$t.txt &
echo -n "$t 64 131072 16 512 32768 4 - 1355072 - " > ./results/cachesim_result_29573_$t.txt
./cachesim $t 64 131072 16 512 32768 4 >> ./results/cachesim_result_29573_$t.txt &
echo -n "$t 64 131072 16 1024 32768 4 - 1354400 - " > ./results/cachesim_result_29574_$t.txt
./cachesim $t 64 131072 16 1024 32768 4 >> ./results/cachesim_result_29574_$t.txt &
echo -n "$t 64 131072 16 64 32768 8 - 1364992 - " > ./results/cachesim_result_29575_$t.txt
./cachesim $t 64 131072 16 64 32768 8 >> ./results/cachesim_result_29575_$t.txt &
echo -n "$t 64 131072 16 128 32768 8 - 1359360 - " > ./results/cachesim_result_29576_$t.txt
./cachesim $t 64 131072 16 128 32768 8 >> ./results/cachesim_result_29576_$t.txt &
echo -n "$t 64 131072 16 256 32768 8 - 1356544 - " > ./results/cachesim_result_29577_$t.txt
./cachesim $t 64 131072 16 256 32768 8 >> ./results/cachesim_result_29577_$t.txt &
echo -n "$t 64 131072 16 512 32768 8 - 1355136 - " > ./results/cachesim_result_29578_$t.txt
./cachesim $t 64 131072 16 512 32768 8 >> ./results/cachesim_result_29578_$t.txt &
echo -n "$t 64 131072 16 1024 32768 8 - 1354432 - " > ./results/cachesim_result_29579_$t.txt
./cachesim $t 64 131072 16 1024 32768 8 >> ./results/cachesim_result_29579_$t.txt &
echo -n "$t 64 131072 16 64 32768 16 - 1365504 - " > ./results/cachesim_result_29580_$t.txt
./cachesim $t 64 131072 16 64 32768 16 >> ./results/cachesim_result_29580_$t.txt &
echo -n "$t 64 131072 16 128 32768 16 - 1359616 - " > ./results/cachesim_result_29581_$t.txt
./cachesim $t 64 131072 16 128 32768 16 >> ./results/cachesim_result_29581_$t.txt &
echo -n "$t 64 131072 16 256 32768 16 - 1356672 - " > ./results/cachesim_result_29582_$t.txt
./cachesim $t 64 131072 16 256 32768 16 >> ./results/cachesim_result_29582_$t.txt &
echo -n "$t 64 131072 16 512 32768 16 - 1355200 - " > ./results/cachesim_result_29583_$t.txt
./cachesim $t 64 131072 16 512 32768 16 >> ./results/cachesim_result_29583_$t.txt &
echo -n "$t 64 131072 16 1024 32768 16 - 1354464 - " > ./results/cachesim_result_29584_$t.txt
./cachesim $t 64 131072 16 1024 32768 16 >> ./results/cachesim_result_29584_$t.txt &
echo -n "$t 64 131072 16 64 32768 32 - 1366016 - " > ./results/cachesim_result_29585_$t.txt
./cachesim $t 64 131072 16 64 32768 32 >> ./results/cachesim_result_29585_$t.txt &
echo -n "$t 64 131072 16 128 32768 32 - 1359872 - " > ./results/cachesim_result_29586_$t.txt
./cachesim $t 64 131072 16 128 32768 32 >> ./results/cachesim_result_29586_$t.txt &
echo -n "$t 64 131072 16 256 32768 32 - 1356800 - " > ./results/cachesim_result_29587_$t.txt
./cachesim $t 64 131072 16 256 32768 32 >> ./results/cachesim_result_29587_$t.txt &
echo -n "$t 64 131072 16 512 32768 32 - 1355264 - " > ./results/cachesim_result_29588_$t.txt
./cachesim $t 64 131072 16 512 32768 32 >> ./results/cachesim_result_29588_$t.txt &
echo -n "$t 64 131072 16 1024 32768 32 - 1354496 - " > ./results/cachesim_result_29589_$t.txt
./cachesim $t 64 131072 16 1024 32768 32 >> ./results/cachesim_result_29589_$t.txt &
echo -n "$t 128 131072 16 128 4096 1 - 1103552 - " > ./results/cachesim_result_29590_$t.txt
./cachesim $t 128 131072 16 128 4096 1 >> ./results/cachesim_result_29590_$t.txt &
echo -n "$t 128 131072 16 256 4096 1 - 1103200 - " > ./results/cachesim_result_29591_$t.txt
./cachesim $t 128 131072 16 256 4096 1 >> ./results/cachesim_result_29591_$t.txt &
echo -n "$t 128 131072 16 512 4096 1 - 1103024 - " > ./results/cachesim_result_29592_$t.txt
./cachesim $t 128 131072 16 512 4096 1 >> ./results/cachesim_result_29592_$t.txt &
echo -n "$t 128 131072 16 1024 4096 1 - 1102936 - " > ./results/cachesim_result_29593_$t.txt
./cachesim $t 128 131072 16 1024 4096 1 >> ./results/cachesim_result_29593_$t.txt &
echo -n "$t 128 131072 16 128 4096 2 - 1103584 - " > ./results/cachesim_result_29594_$t.txt
./cachesim $t 128 131072 16 128 4096 2 >> ./results/cachesim_result_29594_$t.txt &
echo -n "$t 128 131072 16 256 4096 2 - 1103216 - " > ./results/cachesim_result_29595_$t.txt
./cachesim $t 128 131072 16 256 4096 2 >> ./results/cachesim_result_29595_$t.txt &
echo -n "$t 128 131072 16 512 4096 2 - 1103032 - " > ./results/cachesim_result_29596_$t.txt
./cachesim $t 128 131072 16 512 4096 2 >> ./results/cachesim_result_29596_$t.txt &
echo -n "$t 128 131072 16 1024 4096 2 - 1102940 - " > ./results/cachesim_result_29597_$t.txt
./cachesim $t 128 131072 16 1024 4096 2 >> ./results/cachesim_result_29597_$t.txt &
echo -n "$t 128 131072 16 128 4096 4 - 1103616 - " > ./results/cachesim_result_29598_$t.txt
./cachesim $t 128 131072 16 128 4096 4 >> ./results/cachesim_result_29598_$t.txt &
echo -n "$t 128 131072 16 256 4096 4 - 1103232 - " > ./results/cachesim_result_29599_$t.txt
./cachesim $t 128 131072 16 256 4096 4 >> ./results/cachesim_result_29599_$t.txt &
echo -n "$t 128 131072 16 512 4096 4 - 1103040 - " > ./results/cachesim_result_29600_$t.txt
./cachesim $t 128 131072 16 512 4096 4 >> ./results/cachesim_result_29600_$t.txt &
echo -n "$t 128 131072 16 1024 4096 4 - 1102944 - " > ./results/cachesim_result_29601_$t.txt
./cachesim $t 128 131072 16 1024 4096 4 >> ./results/cachesim_result_29601_$t.txt &
echo -n "$t 128 131072 16 128 4096 8 - 1103648 - " > ./results/cachesim_result_29602_$t.txt
./cachesim $t 128 131072 16 128 4096 8 >> ./results/cachesim_result_29602_$t.txt &
echo -n "$t 128 131072 16 256 4096 8 - 1103248 - " > ./results/cachesim_result_29603_$t.txt
./cachesim $t 128 131072 16 256 4096 8 >> ./results/cachesim_result_29603_$t.txt &
echo -n "$t 128 131072 16 512 4096 8 - 1103048 - " > ./results/cachesim_result_29604_$t.txt
./cachesim $t 128 131072 16 512 4096 8 >> ./results/cachesim_result_29604_$t.txt &
echo -n "$t 128 131072 16 128 4096 16 - 1103680 - " > ./results/cachesim_result_29605_$t.txt
./cachesim $t 128 131072 16 128 4096 16 >> ./results/cachesim_result_29605_$t.txt &
echo -n "$t 128 131072 16 256 4096 16 - 1103264 - " > ./results/cachesim_result_29606_$t.txt
./cachesim $t 128 131072 16 256 4096 16 >> ./results/cachesim_result_29606_$t.txt &
echo -n "$t 128 131072 16 128 4096 32 - 1103712 - " > ./results/cachesim_result_29607_$t.txt
./cachesim $t 128 131072 16 128 4096 32 >> ./results/cachesim_result_29607_$t.txt &
echo -n "$t 128 131072 16 128 8192 1 - 1136960 - " > ./results/cachesim_result_29608_$t.txt
./cachesim $t 128 131072 16 128 8192 1 >> ./results/cachesim_result_29608_$t.txt &
echo -n "$t 128 131072 16 256 8192 1 - 1136288 - " > ./results/cachesim_result_29609_$t.txt
./cachesim $t 128 131072 16 256 8192 1 >> ./results/cachesim_result_29609_$t.txt &
echo -n "$t 128 131072 16 512 8192 1 - 1135952 - " > ./results/cachesim_result_29610_$t.txt
./cachesim $t 128 131072 16 512 8192 1 >> ./results/cachesim_result_29610_$t.txt &
echo -n "$t 128 131072 16 1024 8192 1 - 1135784 - " > ./results/cachesim_result_29611_$t.txt
./cachesim $t 128 131072 16 1024 8192 1 >> ./results/cachesim_result_29611_$t.txt &
echo -n "$t 128 131072 16 128 8192 2 - 1137024 - " > ./results/cachesim_result_29612_$t.txt
./cachesim $t 128 131072 16 128 8192 2 >> ./results/cachesim_result_29612_$t.txt &
echo -n "$t 128 131072 16 256 8192 2 - 1136320 - " > ./results/cachesim_result_29613_$t.txt
./cachesim $t 128 131072 16 256 8192 2 >> ./results/cachesim_result_29613_$t.txt &
echo -n "$t 128 131072 16 512 8192 2 - 1135968 - " > ./results/cachesim_result_29614_$t.txt
./cachesim $t 128 131072 16 512 8192 2 >> ./results/cachesim_result_29614_$t.txt &
echo -n "$t 128 131072 16 1024 8192 2 - 1135792 - " > ./results/cachesim_result_29615_$t.txt
./cachesim $t 128 131072 16 1024 8192 2 >> ./results/cachesim_result_29615_$t.txt &
echo -n "$t 128 131072 16 128 8192 4 - 1137088 - " > ./results/cachesim_result_29616_$t.txt
./cachesim $t 128 131072 16 128 8192 4 >> ./results/cachesim_result_29616_$t.txt &
echo -n "$t 128 131072 16 256 8192 4 - 1136352 - " > ./results/cachesim_result_29617_$t.txt
./cachesim $t 128 131072 16 256 8192 4 >> ./results/cachesim_result_29617_$t.txt &
echo -n "$t 128 131072 16 512 8192 4 - 1135984 - " > ./results/cachesim_result_29618_$t.txt
./cachesim $t 128 131072 16 512 8192 4 >> ./results/cachesim_result_29618_$t.txt &
echo -n "$t 128 131072 16 1024 8192 4 - 1135800 - " > ./results/cachesim_result_29619_$t.txt
./cachesim $t 128 131072 16 1024 8192 4 >> ./results/cachesim_result_29619_$t.txt &
echo -n "$t 128 131072 16 128 8192 8 - 1137152 - " > ./results/cachesim_result_29620_$t.txt
./cachesim $t 128 131072 16 128 8192 8 >> ./results/cachesim_result_29620_$t.txt &
echo -n "$t 128 131072 16 256 8192 8 - 1136384 - " > ./results/cachesim_result_29621_$t.txt
./cachesim $t 128 131072 16 256 8192 8 >> ./results/cachesim_result_29621_$t.txt &
echo -n "$t 128 131072 16 512 8192 8 - 1136000 - " > ./results/cachesim_result_29622_$t.txt
./cachesim $t 128 131072 16 512 8192 8 >> ./results/cachesim_result_29622_$t.txt &
echo -n "$t 128 131072 16 1024 8192 8 - 1135808 - " > ./results/cachesim_result_29623_$t.txt
./cachesim $t 128 131072 16 1024 8192 8 >> ./results/cachesim_result_29623_$t.txt &
echo -n "$t 128 131072 16 128 8192 16 - 1137216 - " > ./results/cachesim_result_29624_$t.txt
./cachesim $t 128 131072 16 128 8192 16 >> ./results/cachesim_result_29624_$t.txt &
echo -n "$t 128 131072 16 256 8192 16 - 1136416 - " > ./results/cachesim_result_29625_$t.txt
./cachesim $t 128 131072 16 256 8192 16 >> ./results/cachesim_result_29625_$t.txt &
echo -n "$t 128 131072 16 512 8192 16 - 1136016 - " > ./results/cachesim_result_29626_$t.txt
./cachesim $t 128 131072 16 512 8192 16 >> ./results/cachesim_result_29626_$t.txt &
echo -n "$t 128 131072 16 128 8192 32 - 1137280 - " > ./results/cachesim_result_29627_$t.txt
./cachesim $t 128 131072 16 128 8192 32 >> ./results/cachesim_result_29627_$t.txt &
echo -n "$t 128 131072 16 256 8192 32 - 1136448 - " > ./results/cachesim_result_29628_$t.txt
./cachesim $t 128 131072 16 256 8192 32 >> ./results/cachesim_result_29628_$t.txt &
echo -n "$t 128 131072 16 128 16384 1 - 1203712 - " > ./results/cachesim_result_29629_$t.txt
./cachesim $t 128 131072 16 128 16384 1 >> ./results/cachesim_result_29629_$t.txt &
echo -n "$t 128 131072 16 256 16384 1 - 1202432 - " > ./results/cachesim_result_29630_$t.txt
./cachesim $t 128 131072 16 256 16384 1 >> ./results/cachesim_result_29630_$t.txt &
echo -n "$t 128 131072 16 512 16384 1 - 1201792 - " > ./results/cachesim_result_29631_$t.txt
./cachesim $t 128 131072 16 512 16384 1 >> ./results/cachesim_result_29631_$t.txt &
echo -n "$t 128 131072 16 1024 16384 1 - 1201472 - " > ./results/cachesim_result_29632_$t.txt
./cachesim $t 128 131072 16 1024 16384 1 >> ./results/cachesim_result_29632_$t.txt &
echo -n "$t 128 131072 16 128 16384 2 - 1203840 - " > ./results/cachesim_result_29633_$t.txt
./cachesim $t 128 131072 16 128 16384 2 >> ./results/cachesim_result_29633_$t.txt &
echo -n "$t 128 131072 16 256 16384 2 - 1202496 - " > ./results/cachesim_result_29634_$t.txt
./cachesim $t 128 131072 16 256 16384 2 >> ./results/cachesim_result_29634_$t.txt &
echo -n "$t 128 131072 16 512 16384 2 - 1201824 - " > ./results/cachesim_result_29635_$t.txt
./cachesim $t 128 131072 16 512 16384 2 >> ./results/cachesim_result_29635_$t.txt &
echo -n "$t 128 131072 16 1024 16384 2 - 1201488 - " > ./results/cachesim_result_29636_$t.txt
./cachesim $t 128 131072 16 1024 16384 2 >> ./results/cachesim_result_29636_$t.txt &
echo -n "$t 128 131072 16 128 16384 4 - 1203968 - " > ./results/cachesim_result_29637_$t.txt
./cachesim $t 128 131072 16 128 16384 4 >> ./results/cachesim_result_29637_$t.txt &
echo -n "$t 128 131072 16 256 16384 4 - 1202560 - " > ./results/cachesim_result_29638_$t.txt
./cachesim $t 128 131072 16 256 16384 4 >> ./results/cachesim_result_29638_$t.txt &
echo -n "$t 128 131072 16 512 16384 4 - 1201856 - " > ./results/cachesim_result_29639_$t.txt
./cachesim $t 128 131072 16 512 16384 4 >> ./results/cachesim_result_29639_$t.txt &
echo -n "$t 128 131072 16 1024 16384 4 - 1201504 - " > ./results/cachesim_result_29640_$t.txt
./cachesim $t 128 131072 16 1024 16384 4 >> ./results/cachesim_result_29640_$t.txt &
echo -n "$t 128 131072 16 128 16384 8 - 1204096 - " > ./results/cachesim_result_29641_$t.txt
./cachesim $t 128 131072 16 128 16384 8 >> ./results/cachesim_result_29641_$t.txt &
echo -n "$t 128 131072 16 256 16384 8 - 1202624 - " > ./results/cachesim_result_29642_$t.txt
./cachesim $t 128 131072 16 256 16384 8 >> ./results/cachesim_result_29642_$t.txt &
echo -n "$t 128 131072 16 512 16384 8 - 1201888 - " > ./results/cachesim_result_29643_$t.txt
./cachesim $t 128 131072 16 512 16384 8 >> ./results/cachesim_result_29643_$t.txt &
echo -n "$t 128 131072 16 1024 16384 8 - 1201520 - " > ./results/cachesim_result_29644_$t.txt
./cachesim $t 128 131072 16 1024 16384 8 >> ./results/cachesim_result_29644_$t.txt &
echo -n "$t 128 131072 16 128 16384 16 - 1204224 - " > ./results/cachesim_result_29645_$t.txt
./cachesim $t 128 131072 16 128 16384 16 >> ./results/cachesim_result_29645_$t.txt &
echo -n "$t 128 131072 16 256 16384 16 - 1202688 - " > ./results/cachesim_result_29646_$t.txt
./cachesim $t 128 131072 16 256 16384 16 >> ./results/cachesim_result_29646_$t.txt &
echo -n "$t 128 131072 16 512 16384 16 - 1201920 - " > ./results/cachesim_result_29647_$t.txt
./cachesim $t 128 131072 16 512 16384 16 >> ./results/cachesim_result_29647_$t.txt &
echo -n "$t 128 131072 16 1024 16384 16 - 1201536 - " > ./results/cachesim_result_29648_$t.txt
./cachesim $t 128 131072 16 1024 16384 16 >> ./results/cachesim_result_29648_$t.txt &
echo -n "$t 128 131072 16 128 16384 32 - 1204352 - " > ./results/cachesim_result_29649_$t.txt
./cachesim $t 128 131072 16 128 16384 32 >> ./results/cachesim_result_29649_$t.txt &
echo -n "$t 128 131072 16 256 16384 32 - 1202752 - " > ./results/cachesim_result_29650_$t.txt
./cachesim $t 128 131072 16 256 16384 32 >> ./results/cachesim_result_29650_$t.txt &
echo -n "$t 128 131072 16 512 16384 32 - 1201952 - " > ./results/cachesim_result_29651_$t.txt
./cachesim $t 128 131072 16 512 16384 32 >> ./results/cachesim_result_29651_$t.txt &
echo -n "$t 128 131072 16 128 32768 1 - 1337088 - " > ./results/cachesim_result_29652_$t.txt
./cachesim $t 128 131072 16 128 32768 1 >> ./results/cachesim_result_29652_$t.txt &
echo -n "$t 128 131072 16 256 32768 1 - 1334656 - " > ./results/cachesim_result_29653_$t.txt
./cachesim $t 128 131072 16 256 32768 1 >> ./results/cachesim_result_29653_$t.txt &
echo -n "$t 128 131072 16 512 32768 1 - 1333440 - " > ./results/cachesim_result_29654_$t.txt
./cachesim $t 128 131072 16 512 32768 1 >> ./results/cachesim_result_29654_$t.txt &
echo -n "$t 128 131072 16 1024 32768 1 - 1332832 - " > ./results/cachesim_result_29655_$t.txt
./cachesim $t 128 131072 16 1024 32768 1 >> ./results/cachesim_result_29655_$t.txt &
echo -n "$t 128 131072 16 128 32768 2 - 1337344 - " > ./results/cachesim_result_29656_$t.txt
./cachesim $t 128 131072 16 128 32768 2 >> ./results/cachesim_result_29656_$t.txt &
echo -n "$t 128 131072 16 256 32768 2 - 1334784 - " > ./results/cachesim_result_29657_$t.txt
./cachesim $t 128 131072 16 256 32768 2 >> ./results/cachesim_result_29657_$t.txt &
echo -n "$t 128 131072 16 512 32768 2 - 1333504 - " > ./results/cachesim_result_29658_$t.txt
./cachesim $t 128 131072 16 512 32768 2 >> ./results/cachesim_result_29658_$t.txt &
echo -n "$t 128 131072 16 1024 32768 2 - 1332864 - " > ./results/cachesim_result_29659_$t.txt
./cachesim $t 128 131072 16 1024 32768 2 >> ./results/cachesim_result_29659_$t.txt &
echo -n "$t 128 131072 16 128 32768 4 - 1337600 - " > ./results/cachesim_result_29660_$t.txt
./cachesim $t 128 131072 16 128 32768 4 >> ./results/cachesim_result_29660_$t.txt &
echo -n "$t 128 131072 16 256 32768 4 - 1334912 - " > ./results/cachesim_result_29661_$t.txt
./cachesim $t 128 131072 16 256 32768 4 >> ./results/cachesim_result_29661_$t.txt &
echo -n "$t 128 131072 16 512 32768 4 - 1333568 - " > ./results/cachesim_result_29662_$t.txt
./cachesim $t 128 131072 16 512 32768 4 >> ./results/cachesim_result_29662_$t.txt &
echo -n "$t 128 131072 16 1024 32768 4 - 1332896 - " > ./results/cachesim_result_29663_$t.txt
./cachesim $t 128 131072 16 1024 32768 4 >> ./results/cachesim_result_29663_$t.txt &
echo -n "$t 128 131072 16 128 32768 8 - 1337856 - " > ./results/cachesim_result_29664_$t.txt
./cachesim $t 128 131072 16 128 32768 8 >> ./results/cachesim_result_29664_$t.txt &
echo -n "$t 128 131072 16 256 32768 8 - 1335040 - " > ./results/cachesim_result_29665_$t.txt
./cachesim $t 128 131072 16 256 32768 8 >> ./results/cachesim_result_29665_$t.txt &
echo -n "$t 128 131072 16 512 32768 8 - 1333632 - " > ./results/cachesim_result_29666_$t.txt
./cachesim $t 128 131072 16 512 32768 8 >> ./results/cachesim_result_29666_$t.txt &
echo -n "$t 128 131072 16 1024 32768 8 - 1332928 - " > ./results/cachesim_result_29667_$t.txt
./cachesim $t 128 131072 16 1024 32768 8 >> ./results/cachesim_result_29667_$t.txt &
echo -n "$t 128 131072 16 128 32768 16 - 1338112 - " > ./results/cachesim_result_29668_$t.txt
./cachesim $t 128 131072 16 128 32768 16 >> ./results/cachesim_result_29668_$t.txt &
echo -n "$t 128 131072 16 256 32768 16 - 1335168 - " > ./results/cachesim_result_29669_$t.txt
./cachesim $t 128 131072 16 256 32768 16 >> ./results/cachesim_result_29669_$t.txt &
echo -n "$t 128 131072 16 512 32768 16 - 1333696 - " > ./results/cachesim_result_29670_$t.txt
./cachesim $t 128 131072 16 512 32768 16 >> ./results/cachesim_result_29670_$t.txt &
echo -n "$t 128 131072 16 1024 32768 16 - 1332960 - " > ./results/cachesim_result_29671_$t.txt
./cachesim $t 128 131072 16 1024 32768 16 >> ./results/cachesim_result_29671_$t.txt &
echo -n "$t 128 131072 16 128 32768 32 - 1338368 - " > ./results/cachesim_result_29672_$t.txt
./cachesim $t 128 131072 16 128 32768 32 >> ./results/cachesim_result_29672_$t.txt &
echo -n "$t 128 131072 16 256 32768 32 - 1335296 - " > ./results/cachesim_result_29673_$t.txt
./cachesim $t 128 131072 16 256 32768 32 >> ./results/cachesim_result_29673_$t.txt &
echo -n "$t 128 131072 16 512 32768 32 - 1333760 - " > ./results/cachesim_result_29674_$t.txt
./cachesim $t 128 131072 16 512 32768 32 >> ./results/cachesim_result_29674_$t.txt &
echo -n "$t 128 131072 16 1024 32768 32 - 1332992 - " > ./results/cachesim_result_29675_$t.txt
./cachesim $t 128 131072 16 1024 32768 32 >> ./results/cachesim_result_29675_$t.txt &
echo -n "$t 256 131072 16 256 4096 1 - 1092448 - " > ./results/cachesim_result_29676_$t.txt
./cachesim $t 256 131072 16 256 4096 1 >> ./results/cachesim_result_29676_$t.txt &
echo -n "$t 256 131072 16 512 4096 1 - 1092272 - " > ./results/cachesim_result_29677_$t.txt
./cachesim $t 256 131072 16 512 4096 1 >> ./results/cachesim_result_29677_$t.txt &
echo -n "$t 256 131072 16 1024 4096 1 - 1092184 - " > ./results/cachesim_result_29678_$t.txt
./cachesim $t 256 131072 16 1024 4096 1 >> ./results/cachesim_result_29678_$t.txt &
echo -n "$t 256 131072 16 256 4096 2 - 1092464 - " > ./results/cachesim_result_29679_$t.txt
./cachesim $t 256 131072 16 256 4096 2 >> ./results/cachesim_result_29679_$t.txt &
echo -n "$t 256 131072 16 512 4096 2 - 1092280 - " > ./results/cachesim_result_29680_$t.txt
./cachesim $t 256 131072 16 512 4096 2 >> ./results/cachesim_result_29680_$t.txt &
echo -n "$t 256 131072 16 1024 4096 2 - 1092188 - " > ./results/cachesim_result_29681_$t.txt
./cachesim $t 256 131072 16 1024 4096 2 >> ./results/cachesim_result_29681_$t.txt &
echo -n "$t 256 131072 16 256 4096 4 - 1092480 - " > ./results/cachesim_result_29682_$t.txt
./cachesim $t 256 131072 16 256 4096 4 >> ./results/cachesim_result_29682_$t.txt &
echo -n "$t 256 131072 16 512 4096 4 - 1092288 - " > ./results/cachesim_result_29683_$t.txt
./cachesim $t 256 131072 16 512 4096 4 >> ./results/cachesim_result_29683_$t.txt &
echo -n "$t 256 131072 16 1024 4096 4 - 1092192 - " > ./results/cachesim_result_29684_$t.txt
./cachesim $t 256 131072 16 1024 4096 4 >> ./results/cachesim_result_29684_$t.txt &
echo -n "$t 256 131072 16 256 4096 8 - 1092496 - " > ./results/cachesim_result_29685_$t.txt
./cachesim $t 256 131072 16 256 4096 8 >> ./results/cachesim_result_29685_$t.txt &
echo -n "$t 256 131072 16 512 4096 8 - 1092296 - " > ./results/cachesim_result_29686_$t.txt
./cachesim $t 256 131072 16 512 4096 8 >> ./results/cachesim_result_29686_$t.txt &
echo -n "$t 256 131072 16 256 4096 16 - 1092512 - " > ./results/cachesim_result_29687_$t.txt
./cachesim $t 256 131072 16 256 4096 16 >> ./results/cachesim_result_29687_$t.txt &
echo -n "$t 256 131072 16 256 8192 1 - 1125536 - " > ./results/cachesim_result_29688_$t.txt
./cachesim $t 256 131072 16 256 8192 1 >> ./results/cachesim_result_29688_$t.txt &
echo -n "$t 256 131072 16 512 8192 1 - 1125200 - " > ./results/cachesim_result_29689_$t.txt
./cachesim $t 256 131072 16 512 8192 1 >> ./results/cachesim_result_29689_$t.txt &
echo -n "$t 256 131072 16 1024 8192 1 - 1125032 - " > ./results/cachesim_result_29690_$t.txt
./cachesim $t 256 131072 16 1024 8192 1 >> ./results/cachesim_result_29690_$t.txt &
echo -n "$t 256 131072 16 256 8192 2 - 1125568 - " > ./results/cachesim_result_29691_$t.txt
./cachesim $t 256 131072 16 256 8192 2 >> ./results/cachesim_result_29691_$t.txt &
echo -n "$t 256 131072 16 512 8192 2 - 1125216 - " > ./results/cachesim_result_29692_$t.txt
./cachesim $t 256 131072 16 512 8192 2 >> ./results/cachesim_result_29692_$t.txt &
echo -n "$t 256 131072 16 1024 8192 2 - 1125040 - " > ./results/cachesim_result_29693_$t.txt
./cachesim $t 256 131072 16 1024 8192 2 >> ./results/cachesim_result_29693_$t.txt &
echo -n "$t 256 131072 16 256 8192 4 - 1125600 - " > ./results/cachesim_result_29694_$t.txt
./cachesim $t 256 131072 16 256 8192 4 >> ./results/cachesim_result_29694_$t.txt &
echo -n "$t 256 131072 16 512 8192 4 - 1125232 - " > ./results/cachesim_result_29695_$t.txt
./cachesim $t 256 131072 16 512 8192 4 >> ./results/cachesim_result_29695_$t.txt &
echo -n "$t 256 131072 16 1024 8192 4 - 1125048 - " > ./results/cachesim_result_29696_$t.txt
./cachesim $t 256 131072 16 1024 8192 4 >> ./results/cachesim_result_29696_$t.txt &
echo -n "$t 256 131072 16 256 8192 8 - 1125632 - " > ./results/cachesim_result_29697_$t.txt
./cachesim $t 256 131072 16 256 8192 8 >> ./results/cachesim_result_29697_$t.txt &
echo -n "$t 256 131072 16 512 8192 8 - 1125248 - " > ./results/cachesim_result_29698_$t.txt
./cachesim $t 256 131072 16 512 8192 8 >> ./results/cachesim_result_29698_$t.txt &
echo -n "$t 256 131072 16 1024 8192 8 - 1125056 - " > ./results/cachesim_result_29699_$t.txt
./cachesim $t 256 131072 16 1024 8192 8 >> ./results/cachesim_result_29699_$t.txt &
echo -n "$t 256 131072 16 256 8192 16 - 1125664 - " > ./results/cachesim_result_29700_$t.txt
./cachesim $t 256 131072 16 256 8192 16 >> ./results/cachesim_result_29700_$t.txt &
echo -n "$t 256 131072 16 512 8192 16 - 1125264 - " > ./results/cachesim_result_29701_$t.txt
./cachesim $t 256 131072 16 512 8192 16 >> ./results/cachesim_result_29701_$t.txt &
echo -n "$t 256 131072 16 256 8192 32 - 1125696 - " > ./results/cachesim_result_29702_$t.txt
./cachesim $t 256 131072 16 256 8192 32 >> ./results/cachesim_result_29702_$t.txt &
echo -n "$t 256 131072 16 256 16384 1 - 1191680 - " > ./results/cachesim_result_29703_$t.txt
./cachesim $t 256 131072 16 256 16384 1 >> ./results/cachesim_result_29703_$t.txt &
echo -n "$t 256 131072 16 512 16384 1 - 1191040 - " > ./results/cachesim_result_29704_$t.txt
./cachesim $t 256 131072 16 512 16384 1 >> ./results/cachesim_result_29704_$t.txt &
echo -n "$t 256 131072 16 1024 16384 1 - 1190720 - " > ./results/cachesim_result_29705_$t.txt
./cachesim $t 256 131072 16 1024 16384 1 >> ./results/cachesim_result_29705_$t.txt &
echo -n "$t 256 131072 16 256 16384 2 - 1191744 - " > ./results/cachesim_result_29706_$t.txt
./cachesim $t 256 131072 16 256 16384 2 >> ./results/cachesim_result_29706_$t.txt &
echo -n "$t 256 131072 16 512 16384 2 - 1191072 - " > ./results/cachesim_result_29707_$t.txt
./cachesim $t 256 131072 16 512 16384 2 >> ./results/cachesim_result_29707_$t.txt &
echo -n "$t 256 131072 16 1024 16384 2 - 1190736 - " > ./results/cachesim_result_29708_$t.txt
./cachesim $t 256 131072 16 1024 16384 2 >> ./results/cachesim_result_29708_$t.txt &
echo -n "$t 256 131072 16 256 16384 4 - 1191808 - " > ./results/cachesim_result_29709_$t.txt
./cachesim $t 256 131072 16 256 16384 4 >> ./results/cachesim_result_29709_$t.txt &
echo -n "$t 256 131072 16 512 16384 4 - 1191104 - " > ./results/cachesim_result_29710_$t.txt
./cachesim $t 256 131072 16 512 16384 4 >> ./results/cachesim_result_29710_$t.txt &
echo -n "$t 256 131072 16 1024 16384 4 - 1190752 - " > ./results/cachesim_result_29711_$t.txt
./cachesim $t 256 131072 16 1024 16384 4 >> ./results/cachesim_result_29711_$t.txt &
echo -n "$t 256 131072 16 256 16384 8 - 1191872 - " > ./results/cachesim_result_29712_$t.txt
./cachesim $t 256 131072 16 256 16384 8 >> ./results/cachesim_result_29712_$t.txt &
echo -n "$t 256 131072 16 512 16384 8 - 1191136 - " > ./results/cachesim_result_29713_$t.txt
./cachesim $t 256 131072 16 512 16384 8 >> ./results/cachesim_result_29713_$t.txt &
echo -n "$t 256 131072 16 1024 16384 8 - 1190768 - " > ./results/cachesim_result_29714_$t.txt
./cachesim $t 256 131072 16 1024 16384 8 >> ./results/cachesim_result_29714_$t.txt &
echo -n "$t 256 131072 16 256 16384 16 - 1191936 - " > ./results/cachesim_result_29715_$t.txt
./cachesim $t 256 131072 16 256 16384 16 >> ./results/cachesim_result_29715_$t.txt &
echo -n "$t 256 131072 16 512 16384 16 - 1191168 - " > ./results/cachesim_result_29716_$t.txt
./cachesim $t 256 131072 16 512 16384 16 >> ./results/cachesim_result_29716_$t.txt &
echo -n "$t 256 131072 16 1024 16384 16 - 1190784 - " > ./results/cachesim_result_29717_$t.txt
./cachesim $t 256 131072 16 1024 16384 16 >> ./results/cachesim_result_29717_$t.txt &
echo -n "$t 256 131072 16 256 16384 32 - 1192000 - " > ./results/cachesim_result_29718_$t.txt
./cachesim $t 256 131072 16 256 16384 32 >> ./results/cachesim_result_29718_$t.txt &
echo -n "$t 256 131072 16 512 16384 32 - 1191200 - " > ./results/cachesim_result_29719_$t.txt
./cachesim $t 256 131072 16 512 16384 32 >> ./results/cachesim_result_29719_$t.txt &
echo -n "$t 256 131072 16 256 32768 1 - 1323904 - " > ./results/cachesim_result_29720_$t.txt
./cachesim $t 256 131072 16 256 32768 1 >> ./results/cachesim_result_29720_$t.txt &
echo -n "$t 256 131072 16 512 32768 1 - 1322688 - " > ./results/cachesim_result_29721_$t.txt
./cachesim $t 256 131072 16 512 32768 1 >> ./results/cachesim_result_29721_$t.txt &
echo -n "$t 256 131072 16 1024 32768 1 - 1322080 - " > ./results/cachesim_result_29722_$t.txt
./cachesim $t 256 131072 16 1024 32768 1 >> ./results/cachesim_result_29722_$t.txt &
echo -n "$t 256 131072 16 256 32768 2 - 1324032 - " > ./results/cachesim_result_29723_$t.txt
./cachesim $t 256 131072 16 256 32768 2 >> ./results/cachesim_result_29723_$t.txt &
echo -n "$t 256 131072 16 512 32768 2 - 1322752 - " > ./results/cachesim_result_29724_$t.txt
./cachesim $t 256 131072 16 512 32768 2 >> ./results/cachesim_result_29724_$t.txt &
echo -n "$t 256 131072 16 1024 32768 2 - 1322112 - " > ./results/cachesim_result_29725_$t.txt
./cachesim $t 256 131072 16 1024 32768 2 >> ./results/cachesim_result_29725_$t.txt &
echo -n "$t 256 131072 16 256 32768 4 - 1324160 - " > ./results/cachesim_result_29726_$t.txt
./cachesim $t 256 131072 16 256 32768 4 >> ./results/cachesim_result_29726_$t.txt &
echo -n "$t 256 131072 16 512 32768 4 - 1322816 - " > ./results/cachesim_result_29727_$t.txt
./cachesim $t 256 131072 16 512 32768 4 >> ./results/cachesim_result_29727_$t.txt &
echo -n "$t 256 131072 16 1024 32768 4 - 1322144 - " > ./results/cachesim_result_29728_$t.txt
./cachesim $t 256 131072 16 1024 32768 4 >> ./results/cachesim_result_29728_$t.txt &
echo -n "$t 256 131072 16 256 32768 8 - 1324288 - " > ./results/cachesim_result_29729_$t.txt
./cachesim $t 256 131072 16 256 32768 8 >> ./results/cachesim_result_29729_$t.txt &
echo -n "$t 256 131072 16 512 32768 8 - 1322880 - " > ./results/cachesim_result_29730_$t.txt
./cachesim $t 256 131072 16 512 32768 8 >> ./results/cachesim_result_29730_$t.txt &
echo -n "$t 256 131072 16 1024 32768 8 - 1322176 - " > ./results/cachesim_result_29731_$t.txt
./cachesim $t 256 131072 16 1024 32768 8 >> ./results/cachesim_result_29731_$t.txt &
echo -n "$t 256 131072 16 256 32768 16 - 1324416 - " > ./results/cachesim_result_29732_$t.txt
./cachesim $t 256 131072 16 256 32768 16 >> ./results/cachesim_result_29732_$t.txt &
echo -n "$t 256 131072 16 512 32768 16 - 1322944 - " > ./results/cachesim_result_29733_$t.txt
./cachesim $t 256 131072 16 512 32768 16 >> ./results/cachesim_result_29733_$t.txt &
echo -n "$t 256 131072 16 1024 32768 16 - 1322208 - " > ./results/cachesim_result_29734_$t.txt
./cachesim $t 256 131072 16 1024 32768 16 >> ./results/cachesim_result_29734_$t.txt &
echo -n "$t 256 131072 16 256 32768 32 - 1324544 - " > ./results/cachesim_result_29735_$t.txt
./cachesim $t 256 131072 16 256 32768 32 >> ./results/cachesim_result_29735_$t.txt &
echo -n "$t 256 131072 16 512 32768 32 - 1323008 - " > ./results/cachesim_result_29736_$t.txt
./cachesim $t 256 131072 16 512 32768 32 >> ./results/cachesim_result_29736_$t.txt &
echo -n "$t 256 131072 16 1024 32768 32 - 1322240 - " > ./results/cachesim_result_29737_$t.txt
./cachesim $t 256 131072 16 1024 32768 32 >> ./results/cachesim_result_29737_$t.txt &
echo -n "$t 512 131072 16 512 4096 1 - 1086896 - " > ./results/cachesim_result_29738_$t.txt
./cachesim $t 512 131072 16 512 4096 1 >> ./results/cachesim_result_29738_$t.txt &
echo -n "$t 512 131072 16 1024 4096 1 - 1086808 - " > ./results/cachesim_result_29739_$t.txt
./cachesim $t 512 131072 16 1024 4096 1 >> ./results/cachesim_result_29739_$t.txt &
echo -n "$t 512 131072 16 512 4096 2 - 1086904 - " > ./results/cachesim_result_29740_$t.txt
./cachesim $t 512 131072 16 512 4096 2 >> ./results/cachesim_result_29740_$t.txt &
echo -n "$t 512 131072 16 1024 4096 2 - 1086812 - " > ./results/cachesim_result_29741_$t.txt
./cachesim $t 512 131072 16 1024 4096 2 >> ./results/cachesim_result_29741_$t.txt &
echo -n "$t 512 131072 16 512 4096 4 - 1086912 - " > ./results/cachesim_result_29742_$t.txt
./cachesim $t 512 131072 16 512 4096 4 >> ./results/cachesim_result_29742_$t.txt &
echo -n "$t 512 131072 16 1024 4096 4 - 1086816 - " > ./results/cachesim_result_29743_$t.txt
./cachesim $t 512 131072 16 1024 4096 4 >> ./results/cachesim_result_29743_$t.txt &
echo -n "$t 512 131072 16 512 4096 8 - 1086920 - " > ./results/cachesim_result_29744_$t.txt
./cachesim $t 512 131072 16 512 4096 8 >> ./results/cachesim_result_29744_$t.txt &
echo -n "$t 512 131072 16 512 8192 1 - 1119824 - " > ./results/cachesim_result_29745_$t.txt
./cachesim $t 512 131072 16 512 8192 1 >> ./results/cachesim_result_29745_$t.txt &
echo -n "$t 512 131072 16 1024 8192 1 - 1119656 - " > ./results/cachesim_result_29746_$t.txt
./cachesim $t 512 131072 16 1024 8192 1 >> ./results/cachesim_result_29746_$t.txt &
echo -n "$t 512 131072 16 512 8192 2 - 1119840 - " > ./results/cachesim_result_29747_$t.txt
./cachesim $t 512 131072 16 512 8192 2 >> ./results/cachesim_result_29747_$t.txt &
echo -n "$t 512 131072 16 1024 8192 2 - 1119664 - " > ./results/cachesim_result_29748_$t.txt
./cachesim $t 512 131072 16 1024 8192 2 >> ./results/cachesim_result_29748_$t.txt &
echo -n "$t 512 131072 16 512 8192 4 - 1119856 - " > ./results/cachesim_result_29749_$t.txt
./cachesim $t 512 131072 16 512 8192 4 >> ./results/cachesim_result_29749_$t.txt &
echo -n "$t 512 131072 16 1024 8192 4 - 1119672 - " > ./results/cachesim_result_29750_$t.txt
./cachesim $t 512 131072 16 1024 8192 4 >> ./results/cachesim_result_29750_$t.txt &
echo -n "$t 512 131072 16 512 8192 8 - 1119872 - " > ./results/cachesim_result_29751_$t.txt
./cachesim $t 512 131072 16 512 8192 8 >> ./results/cachesim_result_29751_$t.txt &
echo -n "$t 512 131072 16 1024 8192 8 - 1119680 - " > ./results/cachesim_result_29752_$t.txt
./cachesim $t 512 131072 16 1024 8192 8 >> ./results/cachesim_result_29752_$t.txt &
echo -n "$t 512 131072 16 512 8192 16 - 1119888 - " > ./results/cachesim_result_29753_$t.txt
./cachesim $t 512 131072 16 512 8192 16 >> ./results/cachesim_result_29753_$t.txt &
echo -n "$t 512 131072 16 512 16384 1 - 1185664 - " > ./results/cachesim_result_29754_$t.txt
./cachesim $t 512 131072 16 512 16384 1 >> ./results/cachesim_result_29754_$t.txt &
echo -n "$t 512 131072 16 1024 16384 1 - 1185344 - " > ./results/cachesim_result_29755_$t.txt
./cachesim $t 512 131072 16 1024 16384 1 >> ./results/cachesim_result_29755_$t.txt &
echo -n "$t 512 131072 16 512 16384 2 - 1185696 - " > ./results/cachesim_result_29756_$t.txt
./cachesim $t 512 131072 16 512 16384 2 >> ./results/cachesim_result_29756_$t.txt &
echo -n "$t 512 131072 16 1024 16384 2 - 1185360 - " > ./results/cachesim_result_29757_$t.txt
./cachesim $t 512 131072 16 1024 16384 2 >> ./results/cachesim_result_29757_$t.txt &
echo -n "$t 512 131072 16 512 16384 4 - 1185728 - " > ./results/cachesim_result_29758_$t.txt
./cachesim $t 512 131072 16 512 16384 4 >> ./results/cachesim_result_29758_$t.txt &
echo -n "$t 512 131072 16 1024 16384 4 - 1185376 - " > ./results/cachesim_result_29759_$t.txt
./cachesim $t 512 131072 16 1024 16384 4 >> ./results/cachesim_result_29759_$t.txt &
echo -n "$t 512 131072 16 512 16384 8 - 1185760 - " > ./results/cachesim_result_29760_$t.txt
./cachesim $t 512 131072 16 512 16384 8 >> ./results/cachesim_result_29760_$t.txt &
echo -n "$t 512 131072 16 1024 16384 8 - 1185392 - " > ./results/cachesim_result_29761_$t.txt
./cachesim $t 512 131072 16 1024 16384 8 >> ./results/cachesim_result_29761_$t.txt &
echo -n "$t 512 131072 16 512 16384 16 - 1185792 - " > ./results/cachesim_result_29762_$t.txt
./cachesim $t 512 131072 16 512 16384 16 >> ./results/cachesim_result_29762_$t.txt &
echo -n "$t 512 131072 16 1024 16384 16 - 1185408 - " > ./results/cachesim_result_29763_$t.txt
./cachesim $t 512 131072 16 1024 16384 16 >> ./results/cachesim_result_29763_$t.txt &
echo -n "$t 512 131072 16 512 16384 32 - 1185824 - " > ./results/cachesim_result_29764_$t.txt
./cachesim $t 512 131072 16 512 16384 32 >> ./results/cachesim_result_29764_$t.txt &
echo -n "$t 512 131072 16 512 32768 1 - 1317312 - " > ./results/cachesim_result_29765_$t.txt
./cachesim $t 512 131072 16 512 32768 1 >> ./results/cachesim_result_29765_$t.txt &
echo -n "$t 512 131072 16 1024 32768 1 - 1316704 - " > ./results/cachesim_result_29766_$t.txt
./cachesim $t 512 131072 16 1024 32768 1 >> ./results/cachesim_result_29766_$t.txt &
echo -n "$t 512 131072 16 512 32768 2 - 1317376 - " > ./results/cachesim_result_29767_$t.txt
./cachesim $t 512 131072 16 512 32768 2 >> ./results/cachesim_result_29767_$t.txt &
echo -n "$t 512 131072 16 1024 32768 2 - 1316736 - " > ./results/cachesim_result_29768_$t.txt
./cachesim $t 512 131072 16 1024 32768 2 >> ./results/cachesim_result_29768_$t.txt &
echo -n "$t 512 131072 16 512 32768 4 - 1317440 - " > ./results/cachesim_result_29769_$t.txt
./cachesim $t 512 131072 16 512 32768 4 >> ./results/cachesim_result_29769_$t.txt &
echo -n "$t 512 131072 16 1024 32768 4 - 1316768 - " > ./results/cachesim_result_29770_$t.txt
./cachesim $t 512 131072 16 1024 32768 4 >> ./results/cachesim_result_29770_$t.txt &
echo -n "$t 512 131072 16 512 32768 8 - 1317504 - " > ./results/cachesim_result_29771_$t.txt
./cachesim $t 512 131072 16 512 32768 8 >> ./results/cachesim_result_29771_$t.txt &
echo -n "$t 512 131072 16 1024 32768 8 - 1316800 - " > ./results/cachesim_result_29772_$t.txt
./cachesim $t 512 131072 16 1024 32768 8 >> ./results/cachesim_result_29772_$t.txt &
echo -n "$t 512 131072 16 512 32768 16 - 1317568 - " > ./results/cachesim_result_29773_$t.txt
./cachesim $t 512 131072 16 512 32768 16 >> ./results/cachesim_result_29773_$t.txt &
echo -n "$t 512 131072 16 1024 32768 16 - 1316832 - " > ./results/cachesim_result_29774_$t.txt
./cachesim $t 512 131072 16 1024 32768 16 >> ./results/cachesim_result_29774_$t.txt &
echo -n "$t 512 131072 16 512 32768 32 - 1317632 - " > ./results/cachesim_result_29775_$t.txt
./cachesim $t 512 131072 16 512 32768 32 >> ./results/cachesim_result_29775_$t.txt &
echo -n "$t 512 131072 16 1024 32768 32 - 1316864 - " > ./results/cachesim_result_29776_$t.txt
./cachesim $t 512 131072 16 1024 32768 32 >> ./results/cachesim_result_29776_$t.txt &
echo -n "$t 1024 131072 16 1024 4096 1 - 1084120 - " > ./results/cachesim_result_29777_$t.txt
./cachesim $t 1024 131072 16 1024 4096 1 >> ./results/cachesim_result_29777_$t.txt &
echo -n "$t 1024 131072 16 1024 4096 2 - 1084124 - " > ./results/cachesim_result_29778_$t.txt
./cachesim $t 1024 131072 16 1024 4096 2 >> ./results/cachesim_result_29778_$t.txt &
echo -n "$t 1024 131072 16 1024 4096 4 - 1084128 - " > ./results/cachesim_result_29779_$t.txt
./cachesim $t 1024 131072 16 1024 4096 4 >> ./results/cachesim_result_29779_$t.txt &
echo -n "$t 1024 131072 16 1024 8192 1 - 1116968 - " > ./results/cachesim_result_29780_$t.txt
./cachesim $t 1024 131072 16 1024 8192 1 >> ./results/cachesim_result_29780_$t.txt &
echo -n "$t 1024 131072 16 1024 8192 2 - 1116976 - " > ./results/cachesim_result_29781_$t.txt
./cachesim $t 1024 131072 16 1024 8192 2 >> ./results/cachesim_result_29781_$t.txt &
echo -n "$t 1024 131072 16 1024 8192 4 - 1116984 - " > ./results/cachesim_result_29782_$t.txt
./cachesim $t 1024 131072 16 1024 8192 4 >> ./results/cachesim_result_29782_$t.txt &
echo -n "$t 1024 131072 16 1024 8192 8 - 1116992 - " > ./results/cachesim_result_29783_$t.txt
./cachesim $t 1024 131072 16 1024 8192 8 >> ./results/cachesim_result_29783_$t.txt &
echo -n "$t 1024 131072 16 1024 16384 1 - 1182656 - " > ./results/cachesim_result_29784_$t.txt
./cachesim $t 1024 131072 16 1024 16384 1 >> ./results/cachesim_result_29784_$t.txt &
echo -n "$t 1024 131072 16 1024 16384 2 - 1182672 - " > ./results/cachesim_result_29785_$t.txt
./cachesim $t 1024 131072 16 1024 16384 2 >> ./results/cachesim_result_29785_$t.txt &
echo -n "$t 1024 131072 16 1024 16384 4 - 1182688 - " > ./results/cachesim_result_29786_$t.txt
./cachesim $t 1024 131072 16 1024 16384 4 >> ./results/cachesim_result_29786_$t.txt &
echo -n "$t 1024 131072 16 1024 16384 8 - 1182704 - " > ./results/cachesim_result_29787_$t.txt
./cachesim $t 1024 131072 16 1024 16384 8 >> ./results/cachesim_result_29787_$t.txt &
echo -n "$t 1024 131072 16 1024 16384 16 - 1182720 - " > ./results/cachesim_result_29788_$t.txt
./cachesim $t 1024 131072 16 1024 16384 16 >> ./results/cachesim_result_29788_$t.txt &
echo -n "$t 1024 131072 16 1024 32768 1 - 1314016 - " > ./results/cachesim_result_29789_$t.txt
./cachesim $t 1024 131072 16 1024 32768 1 >> ./results/cachesim_result_29789_$t.txt &
echo -n "$t 1024 131072 16 1024 32768 2 - 1314048 - " > ./results/cachesim_result_29790_$t.txt
./cachesim $t 1024 131072 16 1024 32768 2 >> ./results/cachesim_result_29790_$t.txt &
echo -n "$t 1024 131072 16 1024 32768 4 - 1314080 - " > ./results/cachesim_result_29791_$t.txt
./cachesim $t 1024 131072 16 1024 32768 4 >> ./results/cachesim_result_29791_$t.txt &
echo -n "$t 1024 131072 16 1024 32768 8 - 1314112 - " > ./results/cachesim_result_29792_$t.txt
./cachesim $t 1024 131072 16 1024 32768 8 >> ./results/cachesim_result_29792_$t.txt &
echo -n "$t 1024 131072 16 1024 32768 16 - 1314144 - " > ./results/cachesim_result_29793_$t.txt
./cachesim $t 1024 131072 16 1024 32768 16 >> ./results/cachesim_result_29793_$t.txt &
echo -n "$t 1024 131072 16 1024 32768 32 - 1314176 - " > ./results/cachesim_result_29794_$t.txt
./cachesim $t 1024 131072 16 1024 32768 32 >> ./results/cachesim_result_29794_$t.txt &
echo -n "$t 16 131072 32 16 4096 1 - 1267200 - " > ./results/cachesim_result_29795_$t.txt
./cachesim $t 16 131072 32 16 4096 1 >> ./results/cachesim_result_29795_$t.txt &
echo -n "$t 16 131072 32 32 4096 1 - 1264384 - " > ./results/cachesim_result_29796_$t.txt
./cachesim $t 16 131072 32 32 4096 1 >> ./results/cachesim_result_29796_$t.txt &
echo -n "$t 16 131072 32 64 4096 1 - 1262976 - " > ./results/cachesim_result_29797_$t.txt
./cachesim $t 16 131072 32 64 4096 1 >> ./results/cachesim_result_29797_$t.txt &
echo -n "$t 16 131072 32 128 4096 1 - 1262272 - " > ./results/cachesim_result_29798_$t.txt
./cachesim $t 16 131072 32 128 4096 1 >> ./results/cachesim_result_29798_$t.txt &
echo -n "$t 16 131072 32 256 4096 1 - 1261920 - " > ./results/cachesim_result_29799_$t.txt
./cachesim $t 16 131072 32 256 4096 1 >> ./results/cachesim_result_29799_$t.txt &
echo -n "$t 16 131072 32 512 4096 1 - 1261744 - " > ./results/cachesim_result_29800_$t.txt
./cachesim $t 16 131072 32 512 4096 1 >> ./results/cachesim_result_29800_$t.txt &
echo -n "$t 16 131072 32 1024 4096 1 - 1261656 - " > ./results/cachesim_result_29801_$t.txt
./cachesim $t 16 131072 32 1024 4096 1 >> ./results/cachesim_result_29801_$t.txt &
echo -n "$t 16 131072 32 16 4096 2 - 1267456 - " > ./results/cachesim_result_29802_$t.txt
./cachesim $t 16 131072 32 16 4096 2 >> ./results/cachesim_result_29802_$t.txt &
echo -n "$t 16 131072 32 32 4096 2 - 1264512 - " > ./results/cachesim_result_29803_$t.txt
./cachesim $t 16 131072 32 32 4096 2 >> ./results/cachesim_result_29803_$t.txt &
echo -n "$t 16 131072 32 64 4096 2 - 1263040 - " > ./results/cachesim_result_29804_$t.txt
./cachesim $t 16 131072 32 64 4096 2 >> ./results/cachesim_result_29804_$t.txt &
echo -n "$t 16 131072 32 128 4096 2 - 1262304 - " > ./results/cachesim_result_29805_$t.txt
./cachesim $t 16 131072 32 128 4096 2 >> ./results/cachesim_result_29805_$t.txt &
echo -n "$t 16 131072 32 256 4096 2 - 1261936 - " > ./results/cachesim_result_29806_$t.txt
./cachesim $t 16 131072 32 256 4096 2 >> ./results/cachesim_result_29806_$t.txt &
echo -n "$t 16 131072 32 512 4096 2 - 1261752 - " > ./results/cachesim_result_29807_$t.txt
./cachesim $t 16 131072 32 512 4096 2 >> ./results/cachesim_result_29807_$t.txt &
echo -n "$t 16 131072 32 1024 4096 2 - 1261660 - " > ./results/cachesim_result_29808_$t.txt
./cachesim $t 16 131072 32 1024 4096 2 >> ./results/cachesim_result_29808_$t.txt &
echo -n "$t 16 131072 32 16 4096 4 - 1267712 - " > ./results/cachesim_result_29809_$t.txt
./cachesim $t 16 131072 32 16 4096 4 >> ./results/cachesim_result_29809_$t.txt &
echo -n "$t 16 131072 32 32 4096 4 - 1264640 - " > ./results/cachesim_result_29810_$t.txt
./cachesim $t 16 131072 32 32 4096 4 >> ./results/cachesim_result_29810_$t.txt &
echo -n "$t 16 131072 32 64 4096 4 - 1263104 - " > ./results/cachesim_result_29811_$t.txt
./cachesim $t 16 131072 32 64 4096 4 >> ./results/cachesim_result_29811_$t.txt &
echo -n "$t 16 131072 32 128 4096 4 - 1262336 - " > ./results/cachesim_result_29812_$t.txt
./cachesim $t 16 131072 32 128 4096 4 >> ./results/cachesim_result_29812_$t.txt &
echo -n "$t 16 131072 32 256 4096 4 - 1261952 - " > ./results/cachesim_result_29813_$t.txt
./cachesim $t 16 131072 32 256 4096 4 >> ./results/cachesim_result_29813_$t.txt &
echo -n "$t 16 131072 32 512 4096 4 - 1261760 - " > ./results/cachesim_result_29814_$t.txt
./cachesim $t 16 131072 32 512 4096 4 >> ./results/cachesim_result_29814_$t.txt &
echo -n "$t 16 131072 32 1024 4096 4 - 1261664 - " > ./results/cachesim_result_29815_$t.txt
./cachesim $t 16 131072 32 1024 4096 4 >> ./results/cachesim_result_29815_$t.txt &
echo -n "$t 16 131072 32 16 4096 8 - 1267968 - " > ./results/cachesim_result_29816_$t.txt
./cachesim $t 16 131072 32 16 4096 8 >> ./results/cachesim_result_29816_$t.txt &
echo -n "$t 16 131072 32 32 4096 8 - 1264768 - " > ./results/cachesim_result_29817_$t.txt
./cachesim $t 16 131072 32 32 4096 8 >> ./results/cachesim_result_29817_$t.txt &
echo -n "$t 16 131072 32 64 4096 8 - 1263168 - " > ./results/cachesim_result_29818_$t.txt
./cachesim $t 16 131072 32 64 4096 8 >> ./results/cachesim_result_29818_$t.txt &
echo -n "$t 16 131072 32 128 4096 8 - 1262368 - " > ./results/cachesim_result_29819_$t.txt
./cachesim $t 16 131072 32 128 4096 8 >> ./results/cachesim_result_29819_$t.txt &
echo -n "$t 16 131072 32 256 4096 8 - 1261968 - " > ./results/cachesim_result_29820_$t.txt
./cachesim $t 16 131072 32 256 4096 8 >> ./results/cachesim_result_29820_$t.txt &
echo -n "$t 16 131072 32 512 4096 8 - 1261768 - " > ./results/cachesim_result_29821_$t.txt
./cachesim $t 16 131072 32 512 4096 8 >> ./results/cachesim_result_29821_$t.txt &
echo -n "$t 16 131072 32 16 4096 16 - 1268224 - " > ./results/cachesim_result_29822_$t.txt
./cachesim $t 16 131072 32 16 4096 16 >> ./results/cachesim_result_29822_$t.txt &
echo -n "$t 16 131072 32 32 4096 16 - 1264896 - " > ./results/cachesim_result_29823_$t.txt
./cachesim $t 16 131072 32 32 4096 16 >> ./results/cachesim_result_29823_$t.txt &
echo -n "$t 16 131072 32 64 4096 16 - 1263232 - " > ./results/cachesim_result_29824_$t.txt
./cachesim $t 16 131072 32 64 4096 16 >> ./results/cachesim_result_29824_$t.txt &
echo -n "$t 16 131072 32 128 4096 16 - 1262400 - " > ./results/cachesim_result_29825_$t.txt
./cachesim $t 16 131072 32 128 4096 16 >> ./results/cachesim_result_29825_$t.txt &
echo -n "$t 16 131072 32 256 4096 16 - 1261984 - " > ./results/cachesim_result_29826_$t.txt
./cachesim $t 16 131072 32 256 4096 16 >> ./results/cachesim_result_29826_$t.txt &
echo -n "$t 16 131072 32 16 4096 32 - 1268480 - " > ./results/cachesim_result_29827_$t.txt
./cachesim $t 16 131072 32 16 4096 32 >> ./results/cachesim_result_29827_$t.txt &
echo -n "$t 16 131072 32 32 4096 32 - 1265024 - " > ./results/cachesim_result_29828_$t.txt
./cachesim $t 16 131072 32 32 4096 32 >> ./results/cachesim_result_29828_$t.txt &
echo -n "$t 16 131072 32 64 4096 32 - 1263296 - " > ./results/cachesim_result_29829_$t.txt
./cachesim $t 16 131072 32 64 4096 32 >> ./results/cachesim_result_29829_$t.txt &
echo -n "$t 16 131072 32 128 4096 32 - 1262432 - " > ./results/cachesim_result_29830_$t.txt
./cachesim $t 16 131072 32 128 4096 32 >> ./results/cachesim_result_29830_$t.txt &
echo -n "$t 16 131072 32 16 8192 1 - 1305088 - " > ./results/cachesim_result_29831_$t.txt
./cachesim $t 16 131072 32 16 8192 1 >> ./results/cachesim_result_29831_$t.txt &
echo -n "$t 16 131072 32 32 8192 1 - 1299712 - " > ./results/cachesim_result_29832_$t.txt
./cachesim $t 16 131072 32 32 8192 1 >> ./results/cachesim_result_29832_$t.txt &
echo -n "$t 16 131072 32 64 8192 1 - 1297024 - " > ./results/cachesim_result_29833_$t.txt
./cachesim $t 16 131072 32 64 8192 1 >> ./results/cachesim_result_29833_$t.txt &
echo -n "$t 16 131072 32 128 8192 1 - 1295680 - " > ./results/cachesim_result_29834_$t.txt
./cachesim $t 16 131072 32 128 8192 1 >> ./results/cachesim_result_29834_$t.txt &
echo -n "$t 16 131072 32 256 8192 1 - 1295008 - " > ./results/cachesim_result_29835_$t.txt
./cachesim $t 16 131072 32 256 8192 1 >> ./results/cachesim_result_29835_$t.txt &
echo -n "$t 16 131072 32 512 8192 1 - 1294672 - " > ./results/cachesim_result_29836_$t.txt
./cachesim $t 16 131072 32 512 8192 1 >> ./results/cachesim_result_29836_$t.txt &
echo -n "$t 16 131072 32 1024 8192 1 - 1294504 - " > ./results/cachesim_result_29837_$t.txt
./cachesim $t 16 131072 32 1024 8192 1 >> ./results/cachesim_result_29837_$t.txt &
echo -n "$t 16 131072 32 16 8192 2 - 1305600 - " > ./results/cachesim_result_29838_$t.txt
./cachesim $t 16 131072 32 16 8192 2 >> ./results/cachesim_result_29838_$t.txt &
echo -n "$t 16 131072 32 32 8192 2 - 1299968 - " > ./results/cachesim_result_29839_$t.txt
./cachesim $t 16 131072 32 32 8192 2 >> ./results/cachesim_result_29839_$t.txt &
echo -n "$t 16 131072 32 64 8192 2 - 1297152 - " > ./results/cachesim_result_29840_$t.txt
./cachesim $t 16 131072 32 64 8192 2 >> ./results/cachesim_result_29840_$t.txt &
echo -n "$t 16 131072 32 128 8192 2 - 1295744 - " > ./results/cachesim_result_29841_$t.txt
./cachesim $t 16 131072 32 128 8192 2 >> ./results/cachesim_result_29841_$t.txt &
echo -n "$t 16 131072 32 256 8192 2 - 1295040 - " > ./results/cachesim_result_29842_$t.txt
./cachesim $t 16 131072 32 256 8192 2 >> ./results/cachesim_result_29842_$t.txt &
echo -n "$t 16 131072 32 512 8192 2 - 1294688 - " > ./results/cachesim_result_29843_$t.txt
./cachesim $t 16 131072 32 512 8192 2 >> ./results/cachesim_result_29843_$t.txt &
echo -n "$t 16 131072 32 1024 8192 2 - 1294512 - " > ./results/cachesim_result_29844_$t.txt
./cachesim $t 16 131072 32 1024 8192 2 >> ./results/cachesim_result_29844_$t.txt &
echo -n "$t 16 131072 32 16 8192 4 - 1306112 - " > ./results/cachesim_result_29845_$t.txt
./cachesim $t 16 131072 32 16 8192 4 >> ./results/cachesim_result_29845_$t.txt &
echo -n "$t 16 131072 32 32 8192 4 - 1300224 - " > ./results/cachesim_result_29846_$t.txt
./cachesim $t 16 131072 32 32 8192 4 >> ./results/cachesim_result_29846_$t.txt &
echo -n "$t 16 131072 32 64 8192 4 - 1297280 - " > ./results/cachesim_result_29847_$t.txt
./cachesim $t 16 131072 32 64 8192 4 >> ./results/cachesim_result_29847_$t.txt &
echo -n "$t 16 131072 32 128 8192 4 - 1295808 - " > ./results/cachesim_result_29848_$t.txt
./cachesim $t 16 131072 32 128 8192 4 >> ./results/cachesim_result_29848_$t.txt &
echo -n "$t 16 131072 32 256 8192 4 - 1295072 - " > ./results/cachesim_result_29849_$t.txt
./cachesim $t 16 131072 32 256 8192 4 >> ./results/cachesim_result_29849_$t.txt &
echo -n "$t 16 131072 32 512 8192 4 - 1294704 - " > ./results/cachesim_result_29850_$t.txt
./cachesim $t 16 131072 32 512 8192 4 >> ./results/cachesim_result_29850_$t.txt &
echo -n "$t 16 131072 32 1024 8192 4 - 1294520 - " > ./results/cachesim_result_29851_$t.txt
./cachesim $t 16 131072 32 1024 8192 4 >> ./results/cachesim_result_29851_$t.txt &
echo -n "$t 16 131072 32 16 8192 8 - 1306624 - " > ./results/cachesim_result_29852_$t.txt
./cachesim $t 16 131072 32 16 8192 8 >> ./results/cachesim_result_29852_$t.txt &
echo -n "$t 16 131072 32 32 8192 8 - 1300480 - " > ./results/cachesim_result_29853_$t.txt
./cachesim $t 16 131072 32 32 8192 8 >> ./results/cachesim_result_29853_$t.txt &
echo -n "$t 16 131072 32 64 8192 8 - 1297408 - " > ./results/cachesim_result_29854_$t.txt
./cachesim $t 16 131072 32 64 8192 8 >> ./results/cachesim_result_29854_$t.txt &
echo -n "$t 16 131072 32 128 8192 8 - 1295872 - " > ./results/cachesim_result_29855_$t.txt
./cachesim $t 16 131072 32 128 8192 8 >> ./results/cachesim_result_29855_$t.txt &
echo -n "$t 16 131072 32 256 8192 8 - 1295104 - " > ./results/cachesim_result_29856_$t.txt
./cachesim $t 16 131072 32 256 8192 8 >> ./results/cachesim_result_29856_$t.txt &
echo -n "$t 16 131072 32 512 8192 8 - 1294720 - " > ./results/cachesim_result_29857_$t.txt
./cachesim $t 16 131072 32 512 8192 8 >> ./results/cachesim_result_29857_$t.txt &
echo -n "$t 16 131072 32 1024 8192 8 - 1294528 - " > ./results/cachesim_result_29858_$t.txt
./cachesim $t 16 131072 32 1024 8192 8 >> ./results/cachesim_result_29858_$t.txt &
echo -n "$t 16 131072 32 16 8192 16 - 1307136 - " > ./results/cachesim_result_29859_$t.txt
./cachesim $t 16 131072 32 16 8192 16 >> ./results/cachesim_result_29859_$t.txt &
echo -n "$t 16 131072 32 32 8192 16 - 1300736 - " > ./results/cachesim_result_29860_$t.txt
./cachesim $t 16 131072 32 32 8192 16 >> ./results/cachesim_result_29860_$t.txt &
echo -n "$t 16 131072 32 64 8192 16 - 1297536 - " > ./results/cachesim_result_29861_$t.txt
./cachesim $t 16 131072 32 64 8192 16 >> ./results/cachesim_result_29861_$t.txt &
echo -n "$t 16 131072 32 128 8192 16 - 1295936 - " > ./results/cachesim_result_29862_$t.txt
./cachesim $t 16 131072 32 128 8192 16 >> ./results/cachesim_result_29862_$t.txt &
echo -n "$t 16 131072 32 256 8192 16 - 1295136 - " > ./results/cachesim_result_29863_$t.txt
./cachesim $t 16 131072 32 256 8192 16 >> ./results/cachesim_result_29863_$t.txt &
echo -n "$t 16 131072 32 512 8192 16 - 1294736 - " > ./results/cachesim_result_29864_$t.txt
./cachesim $t 16 131072 32 512 8192 16 >> ./results/cachesim_result_29864_$t.txt &
echo -n "$t 16 131072 32 16 8192 32 - 1307648 - " > ./results/cachesim_result_29865_$t.txt
./cachesim $t 16 131072 32 16 8192 32 >> ./results/cachesim_result_29865_$t.txt &
echo -n "$t 16 131072 32 32 8192 32 - 1300992 - " > ./results/cachesim_result_29866_$t.txt
./cachesim $t 16 131072 32 32 8192 32 >> ./results/cachesim_result_29866_$t.txt &
echo -n "$t 16 131072 32 64 8192 32 - 1297664 - " > ./results/cachesim_result_29867_$t.txt
./cachesim $t 16 131072 32 64 8192 32 >> ./results/cachesim_result_29867_$t.txt &
echo -n "$t 16 131072 32 128 8192 32 - 1296000 - " > ./results/cachesim_result_29868_$t.txt
./cachesim $t 16 131072 32 128 8192 32 >> ./results/cachesim_result_29868_$t.txt &
echo -n "$t 16 131072 32 256 8192 32 - 1295168 - " > ./results/cachesim_result_29869_$t.txt
./cachesim $t 16 131072 32 256 8192 32 >> ./results/cachesim_result_29869_$t.txt &
echo -n "$t 16 131072 32 16 16384 1 - 1380352 - " > ./results/cachesim_result_29870_$t.txt
./cachesim $t 16 131072 32 16 16384 1 >> ./results/cachesim_result_29870_$t.txt &
echo -n "$t 16 131072 32 32 16384 1 - 1370112 - " > ./results/cachesim_result_29871_$t.txt
./cachesim $t 16 131072 32 32 16384 1 >> ./results/cachesim_result_29871_$t.txt &
echo -n "$t 16 131072 32 64 16384 1 - 1364992 - " > ./results/cachesim_result_29872_$t.txt
./cachesim $t 16 131072 32 64 16384 1 >> ./results/cachesim_result_29872_$t.txt &
echo -n "$t 16 131072 32 128 16384 1 - 1362432 - " > ./results/cachesim_result_29873_$t.txt
./cachesim $t 16 131072 32 128 16384 1 >> ./results/cachesim_result_29873_$t.txt &
echo -n "$t 16 131072 32 256 16384 1 - 1361152 - " > ./results/cachesim_result_29874_$t.txt
./cachesim $t 16 131072 32 256 16384 1 >> ./results/cachesim_result_29874_$t.txt &
echo -n "$t 16 131072 32 512 16384 1 - 1360512 - " > ./results/cachesim_result_29875_$t.txt
./cachesim $t 16 131072 32 512 16384 1 >> ./results/cachesim_result_29875_$t.txt &
echo -n "$t 16 131072 32 1024 16384 1 - 1360192 - " > ./results/cachesim_result_29876_$t.txt
./cachesim $t 16 131072 32 1024 16384 1 >> ./results/cachesim_result_29876_$t.txt &
echo -n "$t 16 131072 32 16 16384 2 - 1381376 - " > ./results/cachesim_result_29877_$t.txt
./cachesim $t 16 131072 32 16 16384 2 >> ./results/cachesim_result_29877_$t.txt &
echo -n "$t 16 131072 32 32 16384 2 - 1370624 - " > ./results/cachesim_result_29878_$t.txt
./cachesim $t 16 131072 32 32 16384 2 >> ./results/cachesim_result_29878_$t.txt &
echo -n "$t 16 131072 32 64 16384 2 - 1365248 - " > ./results/cachesim_result_29879_$t.txt
./cachesim $t 16 131072 32 64 16384 2 >> ./results/cachesim_result_29879_$t.txt &
echo -n "$t 16 131072 32 128 16384 2 - 1362560 - " > ./results/cachesim_result_29880_$t.txt
./cachesim $t 16 131072 32 128 16384 2 >> ./results/cachesim_result_29880_$t.txt &
echo -n "$t 16 131072 32 256 16384 2 - 1361216 - " > ./results/cachesim_result_29881_$t.txt
./cachesim $t 16 131072 32 256 16384 2 >> ./results/cachesim_result_29881_$t.txt &
echo -n "$t 16 131072 32 512 16384 2 - 1360544 - " > ./results/cachesim_result_29882_$t.txt
./cachesim $t 16 131072 32 512 16384 2 >> ./results/cachesim_result_29882_$t.txt &
echo -n "$t 16 131072 32 1024 16384 2 - 1360208 - " > ./results/cachesim_result_29883_$t.txt
./cachesim $t 16 131072 32 1024 16384 2 >> ./results/cachesim_result_29883_$t.txt &
echo -n "$t 16 131072 32 16 16384 4 - 1382400 - " > ./results/cachesim_result_29884_$t.txt
./cachesim $t 16 131072 32 16 16384 4 >> ./results/cachesim_result_29884_$t.txt &
echo -n "$t 16 131072 32 32 16384 4 - 1371136 - " > ./results/cachesim_result_29885_$t.txt
./cachesim $t 16 131072 32 32 16384 4 >> ./results/cachesim_result_29885_$t.txt &
echo -n "$t 16 131072 32 64 16384 4 - 1365504 - " > ./results/cachesim_result_29886_$t.txt
./cachesim $t 16 131072 32 64 16384 4 >> ./results/cachesim_result_29886_$t.txt &
echo -n "$t 16 131072 32 128 16384 4 - 1362688 - " > ./results/cachesim_result_29887_$t.txt
./cachesim $t 16 131072 32 128 16384 4 >> ./results/cachesim_result_29887_$t.txt &
echo -n "$t 16 131072 32 256 16384 4 - 1361280 - " > ./results/cachesim_result_29888_$t.txt
./cachesim $t 16 131072 32 256 16384 4 >> ./results/cachesim_result_29888_$t.txt &
echo -n "$t 16 131072 32 512 16384 4 - 1360576 - " > ./results/cachesim_result_29889_$t.txt
./cachesim $t 16 131072 32 512 16384 4 >> ./results/cachesim_result_29889_$t.txt &
echo -n "$t 16 131072 32 1024 16384 4 - 1360224 - " > ./results/cachesim_result_29890_$t.txt
./cachesim $t 16 131072 32 1024 16384 4 >> ./results/cachesim_result_29890_$t.txt &
echo -n "$t 16 131072 32 16 16384 8 - 1383424 - " > ./results/cachesim_result_29891_$t.txt
./cachesim $t 16 131072 32 16 16384 8 >> ./results/cachesim_result_29891_$t.txt &
echo -n "$t 16 131072 32 32 16384 8 - 1371648 - " > ./results/cachesim_result_29892_$t.txt
./cachesim $t 16 131072 32 32 16384 8 >> ./results/cachesim_result_29892_$t.txt &
echo -n "$t 16 131072 32 64 16384 8 - 1365760 - " > ./results/cachesim_result_29893_$t.txt
./cachesim $t 16 131072 32 64 16384 8 >> ./results/cachesim_result_29893_$t.txt &
echo -n "$t 16 131072 32 128 16384 8 - 1362816 - " > ./results/cachesim_result_29894_$t.txt
./cachesim $t 16 131072 32 128 16384 8 >> ./results/cachesim_result_29894_$t.txt &
echo -n "$t 16 131072 32 256 16384 8 - 1361344 - " > ./results/cachesim_result_29895_$t.txt
./cachesim $t 16 131072 32 256 16384 8 >> ./results/cachesim_result_29895_$t.txt &
echo -n "$t 16 131072 32 512 16384 8 - 1360608 - " > ./results/cachesim_result_29896_$t.txt
./cachesim $t 16 131072 32 512 16384 8 >> ./results/cachesim_result_29896_$t.txt &
echo -n "$t 16 131072 32 1024 16384 8 - 1360240 - " > ./results/cachesim_result_29897_$t.txt
./cachesim $t 16 131072 32 1024 16384 8 >> ./results/cachesim_result_29897_$t.txt &
echo -n "$t 16 131072 32 16 16384 16 - 1384448 - " > ./results/cachesim_result_29898_$t.txt
./cachesim $t 16 131072 32 16 16384 16 >> ./results/cachesim_result_29898_$t.txt &
echo -n "$t 16 131072 32 32 16384 16 - 1372160 - " > ./results/cachesim_result_29899_$t.txt
./cachesim $t 16 131072 32 32 16384 16 >> ./results/cachesim_result_29899_$t.txt &
echo -n "$t 16 131072 32 64 16384 16 - 1366016 - " > ./results/cachesim_result_29900_$t.txt
./cachesim $t 16 131072 32 64 16384 16 >> ./results/cachesim_result_29900_$t.txt &
echo -n "$t 16 131072 32 128 16384 16 - 1362944 - " > ./results/cachesim_result_29901_$t.txt
./cachesim $t 16 131072 32 128 16384 16 >> ./results/cachesim_result_29901_$t.txt &
echo -n "$t 16 131072 32 256 16384 16 - 1361408 - " > ./results/cachesim_result_29902_$t.txt
./cachesim $t 16 131072 32 256 16384 16 >> ./results/cachesim_result_29902_$t.txt &
echo -n "$t 16 131072 32 512 16384 16 - 1360640 - " > ./results/cachesim_result_29903_$t.txt
./cachesim $t 16 131072 32 512 16384 16 >> ./results/cachesim_result_29903_$t.txt &
echo -n "$t 16 131072 32 1024 16384 16 - 1360256 - " > ./results/cachesim_result_29904_$t.txt
./cachesim $t 16 131072 32 1024 16384 16 >> ./results/cachesim_result_29904_$t.txt &
echo -n "$t 16 131072 32 16 16384 32 - 1385472 - " > ./results/cachesim_result_29905_$t.txt
./cachesim $t 16 131072 32 16 16384 32 >> ./results/cachesim_result_29905_$t.txt &
echo -n "$t 16 131072 32 32 16384 32 - 1372672 - " > ./results/cachesim_result_29906_$t.txt
./cachesim $t 16 131072 32 32 16384 32 >> ./results/cachesim_result_29906_$t.txt &
echo -n "$t 16 131072 32 64 16384 32 - 1366272 - " > ./results/cachesim_result_29907_$t.txt
./cachesim $t 16 131072 32 64 16384 32 >> ./results/cachesim_result_29907_$t.txt &
echo -n "$t 16 131072 32 128 16384 32 - 1363072 - " > ./results/cachesim_result_29908_$t.txt
./cachesim $t 16 131072 32 128 16384 32 >> ./results/cachesim_result_29908_$t.txt &
echo -n "$t 16 131072 32 256 16384 32 - 1361472 - " > ./results/cachesim_result_29909_$t.txt
./cachesim $t 16 131072 32 256 16384 32 >> ./results/cachesim_result_29909_$t.txt &
echo -n "$t 16 131072 32 512 16384 32 - 1360672 - " > ./results/cachesim_result_29910_$t.txt
./cachesim $t 16 131072 32 512 16384 32 >> ./results/cachesim_result_29910_$t.txt &
echo -n "$t 16 131072 32 128 32768 1 - 1495808 - " > ./results/cachesim_result_29911_$t.txt
./cachesim $t 16 131072 32 128 32768 1 >> ./results/cachesim_result_29911_$t.txt &
echo -n "$t 16 131072 32 256 32768 1 - 1493376 - " > ./results/cachesim_result_29912_$t.txt
./cachesim $t 16 131072 32 256 32768 1 >> ./results/cachesim_result_29912_$t.txt &
echo -n "$t 16 131072 32 512 32768 1 - 1492160 - " > ./results/cachesim_result_29913_$t.txt
./cachesim $t 16 131072 32 512 32768 1 >> ./results/cachesim_result_29913_$t.txt &
echo -n "$t 16 131072 32 1024 32768 1 - 1491552 - " > ./results/cachesim_result_29914_$t.txt
./cachesim $t 16 131072 32 1024 32768 1 >> ./results/cachesim_result_29914_$t.txt &
echo -n "$t 16 131072 32 128 32768 2 - 1496064 - " > ./results/cachesim_result_29915_$t.txt
./cachesim $t 16 131072 32 128 32768 2 >> ./results/cachesim_result_29915_$t.txt &
echo -n "$t 16 131072 32 256 32768 2 - 1493504 - " > ./results/cachesim_result_29916_$t.txt
./cachesim $t 16 131072 32 256 32768 2 >> ./results/cachesim_result_29916_$t.txt &
echo -n "$t 16 131072 32 512 32768 2 - 1492224 - " > ./results/cachesim_result_29917_$t.txt
./cachesim $t 16 131072 32 512 32768 2 >> ./results/cachesim_result_29917_$t.txt &
echo -n "$t 16 131072 32 1024 32768 2 - 1491584 - " > ./results/cachesim_result_29918_$t.txt
./cachesim $t 16 131072 32 1024 32768 2 >> ./results/cachesim_result_29918_$t.txt &
echo -n "$t 16 131072 32 128 32768 4 - 1496320 - " > ./results/cachesim_result_29919_$t.txt
./cachesim $t 16 131072 32 128 32768 4 >> ./results/cachesim_result_29919_$t.txt &
echo -n "$t 16 131072 32 256 32768 4 - 1493632 - " > ./results/cachesim_result_29920_$t.txt
./cachesim $t 16 131072 32 256 32768 4 >> ./results/cachesim_result_29920_$t.txt &
echo -n "$t 16 131072 32 512 32768 4 - 1492288 - " > ./results/cachesim_result_29921_$t.txt
./cachesim $t 16 131072 32 512 32768 4 >> ./results/cachesim_result_29921_$t.txt &
echo -n "$t 16 131072 32 1024 32768 4 - 1491616 - " > ./results/cachesim_result_29922_$t.txt
./cachesim $t 16 131072 32 1024 32768 4 >> ./results/cachesim_result_29922_$t.txt &
echo -n "$t 16 131072 32 128 32768 8 - 1496576 - " > ./results/cachesim_result_29923_$t.txt
./cachesim $t 16 131072 32 128 32768 8 >> ./results/cachesim_result_29923_$t.txt &
echo -n "$t 16 131072 32 256 32768 8 - 1493760 - " > ./results/cachesim_result_29924_$t.txt
./cachesim $t 16 131072 32 256 32768 8 >> ./results/cachesim_result_29924_$t.txt &
echo -n "$t 16 131072 32 512 32768 8 - 1492352 - " > ./results/cachesim_result_29925_$t.txt
./cachesim $t 16 131072 32 512 32768 8 >> ./results/cachesim_result_29925_$t.txt &
echo -n "$t 16 131072 32 1024 32768 8 - 1491648 - " > ./results/cachesim_result_29926_$t.txt
./cachesim $t 16 131072 32 1024 32768 8 >> ./results/cachesim_result_29926_$t.txt &
echo -n "$t 16 131072 32 128 32768 16 - 1496832 - " > ./results/cachesim_result_29927_$t.txt
./cachesim $t 16 131072 32 128 32768 16 >> ./results/cachesim_result_29927_$t.txt &
echo -n "$t 16 131072 32 256 32768 16 - 1493888 - " > ./results/cachesim_result_29928_$t.txt
./cachesim $t 16 131072 32 256 32768 16 >> ./results/cachesim_result_29928_$t.txt &
echo -n "$t 16 131072 32 512 32768 16 - 1492416 - " > ./results/cachesim_result_29929_$t.txt
./cachesim $t 16 131072 32 512 32768 16 >> ./results/cachesim_result_29929_$t.txt &
echo -n "$t 16 131072 32 1024 32768 16 - 1491680 - " > ./results/cachesim_result_29930_$t.txt
./cachesim $t 16 131072 32 1024 32768 16 >> ./results/cachesim_result_29930_$t.txt &
echo -n "$t 16 131072 32 128 32768 32 - 1497088 - " > ./results/cachesim_result_29931_$t.txt
./cachesim $t 16 131072 32 128 32768 32 >> ./results/cachesim_result_29931_$t.txt &
echo -n "$t 16 131072 32 256 32768 32 - 1494016 - " > ./results/cachesim_result_29932_$t.txt
./cachesim $t 16 131072 32 256 32768 32 >> ./results/cachesim_result_29932_$t.txt &
echo -n "$t 16 131072 32 512 32768 32 - 1492480 - " > ./results/cachesim_result_29933_$t.txt
./cachesim $t 16 131072 32 512 32768 32 >> ./results/cachesim_result_29933_$t.txt &
echo -n "$t 16 131072 32 1024 32768 32 - 1491712 - " > ./results/cachesim_result_29934_$t.txt
./cachesim $t 16 131072 32 1024 32768 32 >> ./results/cachesim_result_29934_$t.txt &
echo -n "$t 32 131072 32 32 4096 1 - 1174272 - " > ./results/cachesim_result_29935_$t.txt
./cachesim $t 32 131072 32 32 4096 1 >> ./results/cachesim_result_29935_$t.txt &
echo -n "$t 32 131072 32 64 4096 1 - 1172864 - " > ./results/cachesim_result_29936_$t.txt
./cachesim $t 32 131072 32 64 4096 1 >> ./results/cachesim_result_29936_$t.txt &
echo -n "$t 32 131072 32 128 4096 1 - 1172160 - " > ./results/cachesim_result_29937_$t.txt
./cachesim $t 32 131072 32 128 4096 1 >> ./results/cachesim_result_29937_$t.txt &
echo -n "$t 32 131072 32 256 4096 1 - 1171808 - " > ./results/cachesim_result_29938_$t.txt
./cachesim $t 32 131072 32 256 4096 1 >> ./results/cachesim_result_29938_$t.txt &
echo -n "$t 32 131072 32 512 4096 1 - 1171632 - " > ./results/cachesim_result_29939_$t.txt
./cachesim $t 32 131072 32 512 4096 1 >> ./results/cachesim_result_29939_$t.txt &
echo -n "$t 32 131072 32 1024 4096 1 - 1171544 - " > ./results/cachesim_result_29940_$t.txt
./cachesim $t 32 131072 32 1024 4096 1 >> ./results/cachesim_result_29940_$t.txt &
echo -n "$t 32 131072 32 32 4096 2 - 1174400 - " > ./results/cachesim_result_29941_$t.txt
./cachesim $t 32 131072 32 32 4096 2 >> ./results/cachesim_result_29941_$t.txt &
echo -n "$t 32 131072 32 64 4096 2 - 1172928 - " > ./results/cachesim_result_29942_$t.txt
./cachesim $t 32 131072 32 64 4096 2 >> ./results/cachesim_result_29942_$t.txt &
echo -n "$t 32 131072 32 128 4096 2 - 1172192 - " > ./results/cachesim_result_29943_$t.txt
./cachesim $t 32 131072 32 128 4096 2 >> ./results/cachesim_result_29943_$t.txt &
echo -n "$t 32 131072 32 256 4096 2 - 1171824 - " > ./results/cachesim_result_29944_$t.txt
./cachesim $t 32 131072 32 256 4096 2 >> ./results/cachesim_result_29944_$t.txt &
echo -n "$t 32 131072 32 512 4096 2 - 1171640 - " > ./results/cachesim_result_29945_$t.txt
./cachesim $t 32 131072 32 512 4096 2 >> ./results/cachesim_result_29945_$t.txt &
echo -n "$t 32 131072 32 1024 4096 2 - 1171548 - " > ./results/cachesim_result_29946_$t.txt
./cachesim $t 32 131072 32 1024 4096 2 >> ./results/cachesim_result_29946_$t.txt &
echo -n "$t 32 131072 32 32 4096 4 - 1174528 - " > ./results/cachesim_result_29947_$t.txt
./cachesim $t 32 131072 32 32 4096 4 >> ./results/cachesim_result_29947_$t.txt &
echo -n "$t 32 131072 32 64 4096 4 - 1172992 - " > ./results/cachesim_result_29948_$t.txt
./cachesim $t 32 131072 32 64 4096 4 >> ./results/cachesim_result_29948_$t.txt &
echo -n "$t 32 131072 32 128 4096 4 - 1172224 - " > ./results/cachesim_result_29949_$t.txt
./cachesim $t 32 131072 32 128 4096 4 >> ./results/cachesim_result_29949_$t.txt &
echo -n "$t 32 131072 32 256 4096 4 - 1171840 - " > ./results/cachesim_result_29950_$t.txt
./cachesim $t 32 131072 32 256 4096 4 >> ./results/cachesim_result_29950_$t.txt &
echo -n "$t 32 131072 32 512 4096 4 - 1171648 - " > ./results/cachesim_result_29951_$t.txt
./cachesim $t 32 131072 32 512 4096 4 >> ./results/cachesim_result_29951_$t.txt &
echo -n "$t 32 131072 32 1024 4096 4 - 1171552 - " > ./results/cachesim_result_29952_$t.txt
./cachesim $t 32 131072 32 1024 4096 4 >> ./results/cachesim_result_29952_$t.txt &
echo -n "$t 32 131072 32 32 4096 8 - 1174656 - " > ./results/cachesim_result_29953_$t.txt
./cachesim $t 32 131072 32 32 4096 8 >> ./results/cachesim_result_29953_$t.txt &
echo -n "$t 32 131072 32 64 4096 8 - 1173056 - " > ./results/cachesim_result_29954_$t.txt
./cachesim $t 32 131072 32 64 4096 8 >> ./results/cachesim_result_29954_$t.txt &
echo -n "$t 32 131072 32 128 4096 8 - 1172256 - " > ./results/cachesim_result_29955_$t.txt
./cachesim $t 32 131072 32 128 4096 8 >> ./results/cachesim_result_29955_$t.txt &
echo -n "$t 32 131072 32 256 4096 8 - 1171856 - " > ./results/cachesim_result_29956_$t.txt
./cachesim $t 32 131072 32 256 4096 8 >> ./results/cachesim_result_29956_$t.txt &
echo -n "$t 32 131072 32 512 4096 8 - 1171656 - " > ./results/cachesim_result_29957_$t.txt
./cachesim $t 32 131072 32 512 4096 8 >> ./results/cachesim_result_29957_$t.txt &
echo -n "$t 32 131072 32 32 4096 16 - 1174784 - " > ./results/cachesim_result_29958_$t.txt
./cachesim $t 32 131072 32 32 4096 16 >> ./results/cachesim_result_29958_$t.txt &
echo -n "$t 32 131072 32 64 4096 16 - 1173120 - " > ./results/cachesim_result_29959_$t.txt
./cachesim $t 32 131072 32 64 4096 16 >> ./results/cachesim_result_29959_$t.txt &
echo -n "$t 32 131072 32 128 4096 16 - 1172288 - " > ./results/cachesim_result_29960_$t.txt
./cachesim $t 32 131072 32 128 4096 16 >> ./results/cachesim_result_29960_$t.txt &
echo -n "$t 32 131072 32 256 4096 16 - 1171872 - " > ./results/cachesim_result_29961_$t.txt
./cachesim $t 32 131072 32 256 4096 16 >> ./results/cachesim_result_29961_$t.txt &
echo -n "$t 32 131072 32 32 4096 32 - 1174912 - " > ./results/cachesim_result_29962_$t.txt
./cachesim $t 32 131072 32 32 4096 32 >> ./results/cachesim_result_29962_$t.txt &
echo -n "$t 32 131072 32 64 4096 32 - 1173184 - " > ./results/cachesim_result_29963_$t.txt
./cachesim $t 32 131072 32 64 4096 32 >> ./results/cachesim_result_29963_$t.txt &
echo -n "$t 32 131072 32 128 4096 32 - 1172320 - " > ./results/cachesim_result_29964_$t.txt
./cachesim $t 32 131072 32 128 4096 32 >> ./results/cachesim_result_29964_$t.txt &
echo -n "$t 32 131072 32 32 8192 1 - 1209600 - " > ./results/cachesim_result_29965_$t.txt
./cachesim $t 32 131072 32 32 8192 1 >> ./results/cachesim_result_29965_$t.txt &
echo -n "$t 32 131072 32 64 8192 1 - 1206912 - " > ./results/cachesim_result_29966_$t.txt
./cachesim $t 32 131072 32 64 8192 1 >> ./results/cachesim_result_29966_$t.txt &
echo -n "$t 32 131072 32 128 8192 1 - 1205568 - " > ./results/cachesim_result_29967_$t.txt
./cachesim $t 32 131072 32 128 8192 1 >> ./results/cachesim_result_29967_$t.txt &
echo -n "$t 32 131072 32 256 8192 1 - 1204896 - " > ./results/cachesim_result_29968_$t.txt
./cachesim $t 32 131072 32 256 8192 1 >> ./results/cachesim_result_29968_$t.txt &
echo -n "$t 32 131072 32 512 8192 1 - 1204560 - " > ./results/cachesim_result_29969_$t.txt
./cachesim $t 32 131072 32 512 8192 1 >> ./results/cachesim_result_29969_$t.txt &
echo -n "$t 32 131072 32 1024 8192 1 - 1204392 - " > ./results/cachesim_result_29970_$t.txt
./cachesim $t 32 131072 32 1024 8192 1 >> ./results/cachesim_result_29970_$t.txt &
echo -n "$t 32 131072 32 32 8192 2 - 1209856 - " > ./results/cachesim_result_29971_$t.txt
./cachesim $t 32 131072 32 32 8192 2 >> ./results/cachesim_result_29971_$t.txt &
echo -n "$t 32 131072 32 64 8192 2 - 1207040 - " > ./results/cachesim_result_29972_$t.txt
./cachesim $t 32 131072 32 64 8192 2 >> ./results/cachesim_result_29972_$t.txt &
echo -n "$t 32 131072 32 128 8192 2 - 1205632 - " > ./results/cachesim_result_29973_$t.txt
./cachesim $t 32 131072 32 128 8192 2 >> ./results/cachesim_result_29973_$t.txt &
echo -n "$t 32 131072 32 256 8192 2 - 1204928 - " > ./results/cachesim_result_29974_$t.txt
./cachesim $t 32 131072 32 256 8192 2 >> ./results/cachesim_result_29974_$t.txt &
echo -n "$t 32 131072 32 512 8192 2 - 1204576 - " > ./results/cachesim_result_29975_$t.txt
./cachesim $t 32 131072 32 512 8192 2 >> ./results/cachesim_result_29975_$t.txt &
echo -n "$t 32 131072 32 1024 8192 2 - 1204400 - " > ./results/cachesim_result_29976_$t.txt
./cachesim $t 32 131072 32 1024 8192 2 >> ./results/cachesim_result_29976_$t.txt &
echo -n "$t 32 131072 32 32 8192 4 - 1210112 - " > ./results/cachesim_result_29977_$t.txt
./cachesim $t 32 131072 32 32 8192 4 >> ./results/cachesim_result_29977_$t.txt &
echo -n "$t 32 131072 32 64 8192 4 - 1207168 - " > ./results/cachesim_result_29978_$t.txt
./cachesim $t 32 131072 32 64 8192 4 >> ./results/cachesim_result_29978_$t.txt &
echo -n "$t 32 131072 32 128 8192 4 - 1205696 - " > ./results/cachesim_result_29979_$t.txt
./cachesim $t 32 131072 32 128 8192 4 >> ./results/cachesim_result_29979_$t.txt &
echo -n "$t 32 131072 32 256 8192 4 - 1204960 - " > ./results/cachesim_result_29980_$t.txt
./cachesim $t 32 131072 32 256 8192 4 >> ./results/cachesim_result_29980_$t.txt &
echo -n "$t 32 131072 32 512 8192 4 - 1204592 - " > ./results/cachesim_result_29981_$t.txt
./cachesim $t 32 131072 32 512 8192 4 >> ./results/cachesim_result_29981_$t.txt &
echo -n "$t 32 131072 32 1024 8192 4 - 1204408 - " > ./results/cachesim_result_29982_$t.txt
./cachesim $t 32 131072 32 1024 8192 4 >> ./results/cachesim_result_29982_$t.txt &
echo -n "$t 32 131072 32 32 8192 8 - 1210368 - " > ./results/cachesim_result_29983_$t.txt
./cachesim $t 32 131072 32 32 8192 8 >> ./results/cachesim_result_29983_$t.txt &
echo -n "$t 32 131072 32 64 8192 8 - 1207296 - " > ./results/cachesim_result_29984_$t.txt
./cachesim $t 32 131072 32 64 8192 8 >> ./results/cachesim_result_29984_$t.txt &
echo -n "$t 32 131072 32 128 8192 8 - 1205760 - " > ./results/cachesim_result_29985_$t.txt
./cachesim $t 32 131072 32 128 8192 8 >> ./results/cachesim_result_29985_$t.txt &
echo -n "$t 32 131072 32 256 8192 8 - 1204992 - " > ./results/cachesim_result_29986_$t.txt
./cachesim $t 32 131072 32 256 8192 8 >> ./results/cachesim_result_29986_$t.txt &
echo -n "$t 32 131072 32 512 8192 8 - 1204608 - " > ./results/cachesim_result_29987_$t.txt
./cachesim $t 32 131072 32 512 8192 8 >> ./results/cachesim_result_29987_$t.txt &
echo -n "$t 32 131072 32 1024 8192 8 - 1204416 - " > ./results/cachesim_result_29988_$t.txt
./cachesim $t 32 131072 32 1024 8192 8 >> ./results/cachesim_result_29988_$t.txt &
echo -n "$t 32 131072 32 32 8192 16 - 1210624 - " > ./results/cachesim_result_29989_$t.txt
./cachesim $t 32 131072 32 32 8192 16 >> ./results/cachesim_result_29989_$t.txt &
echo -n "$t 32 131072 32 64 8192 16 - 1207424 - " > ./results/cachesim_result_29990_$t.txt
./cachesim $t 32 131072 32 64 8192 16 >> ./results/cachesim_result_29990_$t.txt &
echo -n "$t 32 131072 32 128 8192 16 - 1205824 - " > ./results/cachesim_result_29991_$t.txt
./cachesim $t 32 131072 32 128 8192 16 >> ./results/cachesim_result_29991_$t.txt &
echo -n "$t 32 131072 32 256 8192 16 - 1205024 - " > ./results/cachesim_result_29992_$t.txt
./cachesim $t 32 131072 32 256 8192 16 >> ./results/cachesim_result_29992_$t.txt &
echo -n "$t 32 131072 32 512 8192 16 - 1204624 - " > ./results/cachesim_result_29993_$t.txt
./cachesim $t 32 131072 32 512 8192 16 >> ./results/cachesim_result_29993_$t.txt &
echo -n "$t 32 131072 32 32 8192 32 - 1210880 - " > ./results/cachesim_result_29994_$t.txt
./cachesim $t 32 131072 32 32 8192 32 >> ./results/cachesim_result_29994_$t.txt &
echo -n "$t 32 131072 32 64 8192 32 - 1207552 - " > ./results/cachesim_result_29995_$t.txt
./cachesim $t 32 131072 32 64 8192 32 >> ./results/cachesim_result_29995_$t.txt &
echo -n "$t 32 131072 32 128 8192 32 - 1205888 - " > ./results/cachesim_result_29996_$t.txt
./cachesim $t 32 131072 32 128 8192 32 >> ./results/cachesim_result_29996_$t.txt &
echo -n "$t 32 131072 32 256 8192 32 - 1205056 - " > ./results/cachesim_result_29997_$t.txt
./cachesim $t 32 131072 32 256 8192 32 >> ./results/cachesim_result_29997_$t.txt &
echo -n "$t 32 131072 32 32 16384 1 - 1280000 - " > ./results/cachesim_result_29998_$t.txt
./cachesim $t 32 131072 32 32 16384 1 >> ./results/cachesim_result_29998_$t.txt &
echo -n "$t 32 131072 32 64 16384 1 - 1274880 - " > ./results/cachesim_result_29999_$t.txt
./cachesim $t 32 131072 32 64 16384 1 >> ./results/cachesim_result_29999_$t.txt &
echo -n "$t 32 131072 32 128 16384 1 - 1272320 - " > ./results/cachesim_result_30000_$t.txt
./cachesim $t 32 131072 32 128 16384 1 >> ./results/cachesim_result_30000_$t.txt &
wait
done
| true
|
523e3002e5a3daeb655c580d0eeac833a5e2b674
|
Shell
|
opendevstack/ods-core
|
/create-projects/create-projects.sh
|
UTF-8
| 5,263
| 3.953125
| 4
|
[
"Apache-2.0"
] |
permissive
|
#!/usr/bin/env bash
set -e
# As this script is executed within the context of Jenkins, which has some
# env vars exposed (via the DeploymentConfig, but also from inside the image).
# It might be surprising to have them alter what the script does without seeing
# them passed/set in the Jenkinsfile_createBuildBot. That's why we reset all env vars here
# and require them to be passed as parameters to the script.
PROJECT_ID=""
PROJECT_ADMINS=""
PROJECT_GROUPS=""
# Role 'admin' is needed to clone an entire project including role bindings
# for env autoclonding in the Jenkins shared library.
JENKINS_ROLE="admin"
function usage {
printf "usage: %s [options]\n" "$0"
printf "\t-h|--help\tPrints the usage\n"
printf "\t-v|--verbose\tVerbose output\n"
printf "\t-p|--project\tProject ID\n"
printf "\t--admins\tAdmins of the projects\n"
printf "\t--groups\tGroups with permissions (e.g. 'USERGROUP=foo,ADMINGROUP=bar,READONLYGROUP=baz')\n"
}
while [[ "$#" -gt 0 ]]; do case $1 in
-v|--verbose) set -x;;
-h|--help) usage; exit 0;;
-p=*|--project=*) PROJECT_ID="${1#*=}";;
-p|--project) PROJECT_ID="$2"; shift;;
--admins=*) PROJECT_ADMINS="${1#*=}";;
--admins) PROJECT_ADMINS="$2"; shift;;
--groups=*) PROJECT_GROUPS="${1#*=}";;
--groups) PROJECT_GROUPS="$2"; shift;;
*) echo "Unknown parameter passed: $1"; usage; exit 1;;
esac; shift; done
# check required parameters
if [ -z "${PROJECT_ID}" ]; then
echo "PROJECT_ID is unset"; usage
exit 1
else
echo "PROJECT_ID=${PROJECT_ID}"
fi
echo "Create projects ${PROJECT_ID}-cd, ${PROJECT_ID}-dev and ${PROJECT_ID}-test"
oc new-project "${PROJECT_ID}-cd"
oc new-project "${PROJECT_ID}-dev"
oc new-project "${PROJECT_ID}-test"
echo "Allow serviceaccount 'jenkins' of ${PROJECT_ID}-cd to admin the environment projects"
oc policy add-role-to-user "${JENKINS_ROLE}" "system:serviceaccount:${PROJECT_ID}-cd:jenkins" -n "${PROJECT_ID}-dev"
oc policy add-role-to-user "${JENKINS_ROLE}" "system:serviceaccount:${PROJECT_ID}-cd:jenkins" -n "${PROJECT_ID}-test"
echo "Grant serviceaccount 'jenkins' role 'edit' in ${PROJECT_ID}-cd"
oc policy add-role-to-user edit --serviceaccount jenkins -n "${PROJECT_ID}-cd"
echo "Allow to pull ${PROJECT_ID}-dev images from ${PROJECT_ID}-test"
oc policy add-role-to-group system:image-puller "system:serviceaccounts:${PROJECT_ID}-test" -n "${PROJECT_ID}-dev"
echo "Allow ${PROJECT_ID}-dev and ${PROJECT_ID}-test to pull ${PROJECT_ID}-cd images"
oc policy add-role-to-group system:image-puller "system:serviceaccounts:${PROJECT_ID}-test" -n "${PROJECT_ID}-cd"
oc policy add-role-to-group system:image-puller "system:serviceaccounts:${PROJECT_ID}-dev" -n "${PROJECT_ID}-cd"
echo "Grant serviceaccount 'default' role 'image-builder' to import images from other cluster"
oc policy add-role-to-user system:image-builder --serviceaccount default -n "${PROJECT_ID}-dev"
oc policy add-role-to-user system:image-builder --serviceaccount default -n "${PROJECT_ID}-test"
if [ -n "${PROJECT_ADMINS}" ]; then
# By default only role 'dedicated-admin' has admin rights
echo "Seeding admins (${PROJECT_ADMINS}) ..."
for admin_user in ${PROJECT_ADMINS//,/ }; do
echo "- seeding admin: ${admin_user}"
oc policy add-role-to-user admin "${admin_user}" -n "${PROJECT_ID}-dev"
oc policy add-role-to-user admin "${admin_user}" -n "${PROJECT_ID}-test"
oc policy add-role-to-user admin "${admin_user}" -n "${PROJECT_ID}-cd"
done
fi
if [ -n "${PROJECT_GROUPS}" ]; then
echo "Seeding special permission groups (${PROJECT_GROUPS}) ..."
for group in ${PROJECT_GROUPS//,/ }; do
groupName=$(echo "${group}" | cut -d "=" -f1)
groupValue=$(echo "${group}" | cut -d "=" -f2)
usergroup_role="edit"
admingroup_role="admin"
readonlygroup_role="view"
if [ "${groupValue}" == "" ]; then
continue
fi
echo "- seeding group: ${groupName} - ${groupValue}"
shopt -s nocasematch
if [[ "${groupName}" == *USERGROUP* ]]; then
oc policy add-role-to-group "${usergroup_role}" "${groupValue}" -n "${PROJECT_ID}-dev"
oc policy add-role-to-group "${usergroup_role}" "${groupValue}" -n "${PROJECT_ID}-test"
oc policy add-role-to-group "${usergroup_role}" "${groupValue}" -n "${PROJECT_ID}-cd"
elif [[ "${groupName}" == *ADMINGROUP* ]]; then
oc policy add-role-to-group "${admingroup_role}" "${groupValue}" -n "${PROJECT_ID}-dev"
oc policy add-role-to-group "${admingroup_role}" "${groupValue}" -n "${PROJECT_ID}-test"
oc policy add-role-to-group "${admingroup_role}" "${groupValue}" -n "${PROJECT_ID}-cd"
elif [[ "${groupName}" == *READONLYGROUP* ]]; then
oc policy add-role-to-group "${readonlygroup_role}" "${groupValue}" -n "${PROJECT_ID}-dev"
oc policy add-role-to-group "${readonlygroup_role}" "${groupValue}" -n "${PROJECT_ID}-test"
oc policy add-role-to-group "${readonlygroup_role}" "${groupValue}" -n "${PROJECT_ID}-cd"
fi
done
else
echo "Allow all authenticated users to view the project"
oc policy add-role-to-group view system:authenticated -n "${PROJECT_ID}-dev"
oc policy add-role-to-group view system:authenticated -n "${PROJECT_ID}-test"
oc policy add-role-to-group view system:authenticated -n "${PROJECT_ID}-cd"
fi
| true
|
0465f2fc470657cd9c45d7950d0e95b7d2b4b117
|
Shell
|
Santana90/SHELL
|
/ejercicio11.sh
|
UTF-8
| 227
| 3.28125
| 3
|
[] |
no_license
|
#!/bin/bash
if [ $# -eq 0 ]
then
echo "Forma de uso: $0 <fichero o ficheros, de los que quiera saber el numero de lineas que contengasn la al menos 4 veces> "
exit 1
fi
for i in $*
do
grep '\(.* la .*\)\{4\}' $i
done
| true
|
7cf4c9d371e3dfc067aedd2b1d5c1b0f0ee4b08c
|
Shell
|
derekdon/angular.js
|
/scripts/jenkins/master.sh
|
UTF-8
| 292
| 2.65625
| 3
|
[
"MIT"
] |
permissive
|
#!/bin/bash
set -e # fail if any command fails
cd `dirname $0`/../..
# Build
./jenkins_build.sh
# Update code.angularjs.org
VERSION=`cat build/version.txt`
curl -G --data-urlencode 'ver=$VERSION' http://code.angularjs.org/fetchLatestSnapshot.php
# Push to bower
./scripts/bower/publish.sh
| true
|
25ab7f3a92c01f8cb4c9f228734f3bad4fbd4e62
|
Shell
|
pazjacket/sue445-_-sebastian-badge
|
/script/notify_to_slack.sh
|
UTF-8
| 216
| 2.9375
| 3
|
[
"MIT"
] |
permissive
|
#!/bin/bash
NAME=$1
MESSAGE=$2
if [ -n "${SLACK_TOKEN}" ]; then
curl https://slack.com/api/chat.postMessage -X POST -d 'channel=#sebastian' -d "text=${MESSAGE}" -d "username=${NAME}" -d "token=${SLACK_TOKEN}"
fi
| true
|
1cd6380d7328bd47a683e03628291fda7fbb550e
|
Shell
|
schnurps/scripps_college_scripts
|
/edu.ohio.scripps.mdia.unity_permissions_fix/unity_permissions_fix.sh
|
UTF-8
| 796
| 3.71875
| 4
|
[] |
no_license
|
#!/bin/bash
# Copy AngryBots project to $HOME/Documents/Unity/AngryBots
# if it doesn't already exist
# This fixes a problem where Unity will ask for an admin
# to "Set Permissions" for each standard user
if [ ! -d "$HOME/Documents/Unity/AngryBots" ]; then
#Make directory and then unzip AngryBots into the users Documents folder
mkdir -p /Users/Shared/Unity
mkdir -p /Users/Shared/Unity/AngryBots-$USER
unzip /Library/Management/unity_permissions_fix/AngryBots.zip -d /Users/Shared/Unity/AngryBots-$USER
fi
#Make the Shared Unity directory and set permissions correctly
chmod -R 777 /Users/Shared/Unity/AngryBots-$USER
#Symbolically link the expected location (/Users/Shared/Unity/AngryBots) to the copied location
ln -sf /Users/Shared/Unity/AngryBots-$USER /Users/Shared/Unity/AngryBots
| true
|
27094eedf82ce7c2e6c4dc80d7060ce862ad3852
|
Shell
|
wilhuff/git-scripts
|
/bin/git-current-branch
|
UTF-8
| 276
| 3.203125
| 3
|
[
"Apache-2.0"
] |
permissive
|
#!/bin/bash
# Output the current branch on stdout
# The output of git branch should look like:
# feature1
# * feature2
# master
#
# Indicating that of the three available branches, feature2 is current.
git branch --no-color 2> /dev/null \
| sed '/^[^*]/d; s/^\* //'
| true
|
9a2c37167ec77a0d5ee920618fd5c14d64e58615
|
Shell
|
mkotsur/restito
|
/script/javadoc.sh
|
UTF-8
| 1,014
| 3.5625
| 4
|
[
"MIT"
] |
permissive
|
#!/bin/bash
PAGES_BRANCH="gh-pages"
PAGES_JAVADOC_PATH="javadoc/current"
BUILD_JAVADOC_PATH="build/docs/javadoc"
gradle javadoc
if [[ ! -d "${BUILD_JAVADOC_PATH}" ]]; then echo "Could not find generated javadoc."; exit 30; fi
if [[ ! -d "./src" ]]; then echo "Should be started from the project root."; exit 10; fi
if [[ ! $(git branch | grep "${PAGES_BRANCH}") ]]; then echo " --> Branch ${PAGES_BRANCH} does not exist."; exit 20; fi
initial_branch="$(git rev-parse --symbolic-full-name --abbrev-ref HEAD)"
echo " --> You are on branch: ${initial_branch}. Checking out ${PAGES_BRANCH}."
git co "${PAGES_BRANCH}"
if [[ $? -ne 0 ]]; then echo " --> Previous command failed. Bye-Bye."; exit $?; fi
git rm -rf "${PAGES_JAVADOC_PATH}"
cp -r "${BUILD_JAVADOC_PATH}" "${PAGES_JAVADOC_PATH}"
if [[ $? -ne 0 ]]; then echo " --> Previous command failed. Bye-Bye."; exit $?; fi
git add -A
git ci -am "New javadoc for git pages"
git push origin ${PAGES_BRANCH}
git co ${initial_branch}
echo " [DONE] :-)"
| true
|
1fd32b51d97766489aea4d730873b8522ad90837
|
Shell
|
fidian/bin
|
/telnets
|
UTF-8
| 108
| 2.59375
| 3
|
[] |
no_license
|
#!/bin/bash
if [ ! -z "$2" ]; then
openssl s_client -host $1 -port $2
else
openssl s_client -host $1
fi
| true
|
529c5641c79aafb3d2c6f430bf6daf0bf70e2321
|
Shell
|
AloveIs/AccentComparison
|
/statistics.sh
|
UTF-8
| 664
| 3.421875
| 3
|
[] |
no_license
|
#!/bin/bash
echo "# Data Statistics"
echo "## Total Statistics"
echo "Number of recordings $(ls -w1 ./*/*.wav | wc -l)"
echo "Total duration of data $(soxi -Td ./*/*.wav)"
echo "Size of data (numpy files only) $(du -hc ./*/*.npy | tail -1| head -c4)"
echo "Size of recordings $(du -hc ./*/*.wav|tail -1| head -c4)"
for element in west skane norwegian danish
do
echo "## $element"
cd $element;
echo "Number of recordings $(ls -w1 *.wav | wc -l)"
echo "Total duration of data $(soxi -Td *.wav)"
echo "Size of data (numpy files only) $(du -hc ./*.npy | tail -1| head -c4)"
echo "Size of recordings $(du -hc ./*.wav|tail -1| head -c5)"
cd ..;
done
| true
|
0887ae45a72b40885b020ead2a9ff7fa53b9619b
|
Shell
|
chrisslupi/xf
|
/installation/icons-surfn-v3.sh
|
UTF-8
| 814
| 2.9375
| 3
|
[] |
no_license
|
#!/bin/bash
#
##################################################################################################################
##################################################################################################################
# cleaning tmp
[ -d /tmp/Surfn ] && rm -rf /tmp/Surfn
# if there is no hidden folder then make one
[ -d $HOME"/.icons" ] || mkdir -p $HOME"/.icons"
git clone https://github.com/erikdubois/Surfn /tmp/Surfn
find /tmp/Surfn -maxdepth 1 -type f -exec rm -rf '{}' \;
cp -rf /tmp/Surfn/* ~/.icons/
# cleaning tmp
[ -d /tmp/Surfn ] && rm -rf /tmp/Surfn
echo "################################################################"
echo "################### icons surfn done ######################"
echo "################################################################"
| true
|
e8a71b1f3c6f8e14100f7362becf047db546182c
|
Shell
|
udoyen/askubuntu
|
/color.sh~
|
UTF-8
| 360
| 2.6875
| 3
|
[] |
no_license
|
#!/bin/bash
red="\033[31m"
green="\033[32m"
yellow="\033[33m"
blue="\033[34m"
pink="\033[35m"
cyan="\033[36m"
white="\033[37m"
echo ""
echo -e "${green} _ __ ___ ___ "
echo -e "${green} | '_ \/ __/ __|"
echo -e "${green} | | | \__ \__ \\"
echo -e "${green} |_| |_|___/___/"
echo -e "${blue} Welcome My first program"
echo ""
| true
|
16df27ca59d4622fa5ec44cb941b578a9476439e
|
Shell
|
miminashi/cloud-startupscripts
|
/publicscript/larabel/larabel.sh
|
UTF-8
| 2,760
| 3.515625
| 4
|
[] |
no_license
|
#!/bin/bash
#
# @sacloud-once
# @sacloud-name Laravel
# @sacloud-desc PHP5.6 Apache MariaDB Composer Laravel をインストールします。
# @sacloud-desc プロジェクトは"/var/www/html/"配下に作成され、
# @sacloud-desc スタートアップスクリプト終了後、ブラウザから80番でアクセス可能です。
# @sacloud-desc MariaDBのパスワードは自動生成され、"/root/.my.cnf"で確認可能です。
#
# @sacloud-require-archive distro-centos distro-ver-7.*
# set $HOME
echo "* Set HOME"
HOME="/root"
export HOME
# cd ~
echo "* cd home dir"
cd /root
# PHP インストール
echo "* PHP インストール"
yum -y install --enablerepo=remi --enablerepo=remi-php56 php || exit 1
# 依存関係解消
echo "* PHPの依存関係解消"
yum -y install --enablerepo=epel libmcrypt || exit 1
# パッケージインストール
echo "* パッケージインストール"
yum -y install --enablerepo=remi --enablerepo=remi-php56 php-opcache php-devel php-mbstring php-mcrypt php-mysqlnd php-xml || exit 1
# Apache & MariaDB インストール
echo "* Apache & MariaDBインストール"
yum -y install httpd mariadb mariadb-server expect || exit 1
# Composer インストール
echo "* Composer インストール"
curl -sS https://getcomposer.org/installer | php
mv composer.phar /usr/local/bin/composer
# Laravel Installer ダウンロード
echo "* Laravel Installer ダウンロード"
composer global require "laravel/installer=~1.1"
# Laravel Project 作成
echo "* Laravel Project 作成"
rm -rf /var/www/html
composer create-project laravel/laravel /var/www/html --prefer-dist
# Apacheの設定変更
echo "* DocumentRoot 変更"
sed -ie 's/DocumentRoot \"\/var\/www\/html\"/DocumentRoot \"\/var\/www\/html\/public\"/' /etc/httpd/conf/httpd.conf
# ディレクトリのパーミッション変更
echo "* ディレクトリのパーミッション変更"
chmod 777 /var/www/html/storage/logs/
chmod 777 -R /var/www/html/storage/framework/
# Apache & MariaDBの有効化&スタート
echo "* Apache & MariaDBを有効化&スタート"
systemctl enable mariadb.service || exit 1
systemctl start mariadb.service || exit 1
systemctl enable httpd.service || exit 1
systemctl start httpd.service || exit 1
# MariaDB設定
echo "* MariaDB設定"
PASSWORD=`mkpasswd -l 32 -d 9 -c 9 -C 9 -s 0 -2`
mysqladmin -u root password "${PASSWORD}"
echo $PASSWORD
cat <<_EOL_> /root/.my.cnf
[client]
host = localhost
user = root
password = ${PASSWORD}
socket = /var/lib/mysql/mysql.sock
_EOL_
# firewallの80番ポート開ける
echo "* firewall で80番ポートを開ける"
firewall-cmd --add-port=80/tcp --zone=public --permanent
firewall-cmd --reload
# 設定完了を表示
echo "* 設定完了"
| true
|
0af2b5fcebe7b64ea3b7486fbdf5039fce08472e
|
Shell
|
ygt-luca/dotfiles
|
/scripts/check_ssh_auth
|
UTF-8
| 720
| 3.890625
| 4
|
[] |
no_license
|
#!/usr/bin/env bash
REMOTE_USER=$1
if [[ -z "${REMOTE_USER}" ]]; then
echo "Usage: $0 <your-remote-user-name>"
exit
fi
# Example:
declare -a servers=(
"someuser@example.com"
"${REMOTE_USER}@spin-staging.yourgolftravel.com"
)
for server in ${servers[@]}; do
# More info about this solution:
# - http://stackoverflow.com/questions/5768130/bash-ssh-test-for-public-key-authentication/5768198#5768198
# - http://linuxcommando.blogspot.co.uk/2008/10/how-to-disable-ssh-host-key-checking.html
ssh \
-o 'BatchMode yes' \
-o 'StrictHostKeyChecking no' \
-o 'UserKnownHostsFile /dev/null' \
"${server}" \
true \
> /dev/null 2>&1
if [[ $? == 0 ]]; then
echo "${server} -> OK"
else
echo "${server} -> Auth Failed"
fi
done
| true
|
86b17bb6c0ecd2e976c1ecf485894f8aaf24184f
|
Shell
|
mdanilchenko/test-automation-pack
|
/TA/run-behat
|
UTF-8
| 433
| 2.6875
| 3
|
[] |
no_license
|
#!/usr/bin/env bash
set -e # Fail on errors
# Run behat commands in a running behat container
docker exec $(docker-compose ps -q behat) behat --colors --format=pretty --out=std --format=html --out=html_report --format=junit --out=html_report/junit "$@"
echo "To view HTML report visit: http://<your-docker-host-ip>:8000/html_report/"
echo "To view HTML report visit: http://<your-docker-host-ip>:8000/html_report/junit/core.xml"
| true
|
067e07579e399a13416be54a5c3d97bf332ea82f
|
Shell
|
amateurhuman/dotfiles
|
/ruby/setup.sh
|
UTF-8
| 384
| 3.5
| 4
|
[
"MIT"
] |
permissive
|
RUBY_VERSIONS=( "2.6.5" )
if rbenv -v &>/dev/null; then
log "-- Using $(rbenv -v)"
eval "$(rbenv init -)"
for version in "${RUBY_VERSIONS[@]}"; do
if rbenv prefix $version &>/dev/null; then
logn "-- Ruby $version already installed"
else
rbenv install $version
fi
done
# gem install bundler
else
loge "-- rbenv not installed, skipping setup"
fi
| true
|
f6f4f2bb2305fe0c9337f74621b3ff9d34f90fc4
|
Shell
|
wsu-fnal-ci-analysis/zprime-histograms
|
/submit_ZprimeMuMuAnalysis_BARI.sh
|
UTF-8
| 1,111
| 2.78125
| 3
|
[
"MIT"
] |
permissive
|
#!/bin/bash
mkdir -p /lustre/cms/store/user/defilip/ZprimeAnalysis/80X/jobdir
mkdir -p /lustre/cms/store/user/defilip/ZprimeAnalysis/80X/histodir
echo "Running ZprimeMuMu Analysis with executables RunZprimeMuMuAnalysis"
source /cvmfs/cms.cern.ch/cmsset_default.sh
export LD_LIBRARY_PATH=lib:$LD_LIBRARY_PATH
export PATH=path:$PATH
if [ -d "$_CONDOR_SCRATCH_DIR" ]; then
workdir=`echo $_CONDOR_SCRATCH_DIR`;
cd ${workdir};
else
workdir=`echo $PWD`;
cd ${workdir};
fi
savedir=`echo /lustre/cms/store/user/defilip/ZprimeAnalysis/80X/histodir`
echo "Working dir is $workdir"
#echo "Executable dir is $exedir"
echo "Saving dir is $savedir"
echo "Compiling the macros"
bash compileZprimeMuMuAnalysis.sh
./RunZprimeMuMuAnalysis which sig_input.txt 1 bkg_input.txt 1 data_input.txt 1 site year mc >& ${workdir}/RunZprimeMuMuAnalysis.log
mv -f ${workdir}/RunZprimeMuMuAnalysis.log /lustre/cms/store/user/defilip/ZprimeAnalysis/80X/jobdir/output.log
mv -f ${workdir}/ZprimeToMuMu_13TeV.root ${savedir}/output.root
mv -f ${workdir}/ZprimeToMuMu_13TeV_cand.txt ${savedir}/output_cand.txt
| true
|
670850ed8d61cd98b9b75f373fa57224f67319b2
|
Shell
|
yuanying/k8s-env
|
/tools/node-down.sh
|
UTF-8
| 316
| 2.90625
| 3
|
[
"Apache-2.0"
] |
permissive
|
#!/usr/bin/env bash
export LC_ALL=C
NODE_ENV=${1:-""}
script_dir=$(dirname "${BASH_SOURCE}")
if [[ ${NODE_ENV} != '' ]]; then
source ${NODE_ENV}
fi
NODE_ROOT=${NODE_ROOT:-'/var/vms'}
sudo virsh destroy ${NODE_HOSTNAME}
sudo virsh undefine ${NODE_HOSTNAME}
sudo sh -c "rm -rf ${NODE_ROOT}/${NODE_HOSTNAME}*"
| true
|
72eb8e363a7b62493cd64e72d65ca4bc2163751b
|
Shell
|
gordonmurray/learn_sysops
|
/chapter_8/packer/files/prometheus.sh
|
UTF-8
| 1,229
| 3.4375
| 3
|
[] |
no_license
|
#!/usr/bin/env bash
set -xe
sudo su -
export RELEASE="2.2.1"
wget https://github.com/prometheus/prometheus/releases/download/v${RELEASE}/prometheus-${RELEASE}.linux-amd64.tar.gz
tar xvf prometheus-${RELEASE}.linux-amd64.tar.gz
cd prometheus-${RELEASE}.linux-amd64/
# Create Prometheus system group
groupadd --system prometheus
grep prometheus /etc/group
# Create Prometheus system user
useradd -s /sbin/nologin -r -g prometheus prometheus
#Create configuration and data directories for Prometheus
rm -rf /etc/prometheus
mkdir -p /etc/prometheus
mkdir -p /etc/prometheus/rules
mkdir -p /etc/prometheus/rules.d
mkdir -p /etc/prometheus/files_sd
mkdir -p /var/lib/prometheus
# Copy Prometheus binary files to a directory in your $PATH
cp prometheus promtool /usr/local/bin/
ls /usr/local/bin/
# Copy consoles and console_libraries to configuration files directory:
cp -r consoles/ console_libraries/ /etc/prometheus/
# Change directory permissions to Prometheus user and group
chown -R prometheus:prometheus /etc/prometheus/ /var/lib/prometheus/
chmod -R 775 /etc/prometheus/ /var/lib/prometheus/
# Start and enable Prometheus service
systemctl start prometheus
systemctl enable prometheus
systemctl status prometheus
| true
|
45bc1dfacecea49a58e16fa80479c4005c37887e
|
Shell
|
bargassa/Stop4Body
|
/Macros/Step4_ApplyMVA.sh
|
UTF-8
| 318
| 2.921875
| 3
|
[] |
no_license
|
#!/bin/bash
. setupJSONs.sh
. setupPaths.sh
#INPUT=${NTUPLE_DIR}
#INPUT=${TRAIN_DIR}
INPUT=${TEST_DIR}
OUTPUT=${INPUT}_bdt
if [[ -d ${INPUT} ]] ; then
if [[ ! -d ${OUTPUT} ]] ; then
mkdir -p ${OUTPUT}
fi
applyMVA --json ${JSON_PATH}/allSamples.json --method BDT --inDir ${INPUT}/ --outDir ${OUTPUT}/
fi
| true
|
0d5bff4d338ab3c76c427356663a93d9971393ad
|
Shell
|
grtlinux/TAIN_IB2
|
/TAIN_IB2/ib2/shl/log_dec.sh
|
UHC
| 194
| 2.53125
| 3
|
[] |
no_license
|
Str1=${1}
Str2=${Str1%.enc}
# ȣ
echo "[41m < ȣ : [${Str1}] >[0m\n"
log_sec DEC ${Str1}
#
echo "[41m < : [${Str1}] >[0m\n"
gzip -d ${Str2}
| true
|
a17bae4cb180105ce1979aab85f50021b4cafa36
|
Shell
|
OHDSI/Vocab-download
|
/public_html/include/s3upload.sh
|
UTF-8
| 1,012
| 3.171875
| 3
|
[
"Apache-2.0"
] |
permissive
|
#!/bin/bash
##########################################################################
# upload the zip file to the OHDSI cloud inbound vocab data feed s3 bucket
##########################################################################
source "${BASH_SOURCE%/*}/app-config.sh"
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
cd "$app_root_dir/vocab_files"
file=athena-ohdsi-cloud-s3-datafeed.zip
bucket=ohdsi-vocab
resource="/${bucket}/${file}"
contentType="application/zip"
dateValue=`date -R`
stringToSign="PUT\n\n${contentType}\n${dateValue}\n${resource}"
s3Key=AKIAIRNLDAOUQ2CFPIVQ
s3Secret=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
signature=`echo -en ${stringToSign} | openssl sha1 -hmac ${s3Secret} -binary | base64`
curl --max-time 900 --connect-timeout 900 --keepalive-time 30 -v -L -X PUT -T "$app_root_dir/vocab_files/${file}" \
-H "Host: ${bucket}.s3.amazonaws.com" \
-H "Date: ${dateValue}" \
-H "Content-Type: ${contentType}" \
-H "Authorization: AWS ${s3Key}:${signature}" \
https://${bucket}.s3.amazonaws.com/${file}
| true
|
037c9c5e1070a0d9341ac7abe07cffa47bf2d5d5
|
Shell
|
TRANS-Develop/TRANS
|
/trans/shell/Optimus.sh
|
UTF-8
| 897
| 3.3125
| 3
|
[] |
no_license
|
#/bin/bash
OPTIMUS_HOME=${OPTIMUS_HOME}
OPTIMUS_CONF=${OPTIMUS_CONF}
JAVA_CMD=java
CMD=$1
shift
args=$@
#find class path
for f in $OPTIMUS_HOME/*.jar; do
CLASSPATH=${CLASSPATH}:$f;
done
for f in $OPTIMUS_HOME/lib/*jar; do
CLASSPATH=${CLASSPATH}:$f;
done
if [ "$CMD" = "datanode" ];then
CLASS='TRANS.OptimusNode'
elif [ "$CMD" = "catalog" ]; then
CLASS='TRANS.OptimusCatalog'
elif [ "$CMD" = "clienttest" ]; then
CLASS='TRANS.ClientTest'
elif [ "$CMD" = "readtest" ] ; then
CLASS='TRANS.ReaderTest'
elif [ "$CMD" = "reader" ] ; then
CLASS='TRANS.Client.Reader.OptimusReader'
elif [ "$CMD" = "netcdfloader" ]; then
CLASS='TRANS.Client.NetcdfLoader'
elif [ "$CMD" = "rcreate" ]; then
CLASS='TRANS.Client.creater.RandomArrayCreater'
fi
if [ "$OPTIMUS_CONF" = "" ]; then
OPTIMUS_CONF=${OPTIMUS_HOME}/conf
fi
exec "${JAVA_CMD}" -classpath "$CLASSPATH" $CLASS $args -c $OPTIMUS_CONF
| true
|
4c741947cd3df344c91a8f22d207998e94e9b6d5
|
Shell
|
nomalab/libmxf
|
/test/test_primer.test
|
UTF-8
| 192
| 2.671875
| 3
|
[
"BSD-3-Clause"
] |
permissive
|
#!/bin/sh
temp=/tmp/libmxf_test_$$.mxf
./test_primer $temp && \
./file_md5 < $temp > $temp.md5 && \
diff $temp.md5 ${srcdir}/test_primer.md5
res=$?
rm -f $temp $temp.md5
exit $res
| true
|
9d0b343296e6bf909061b4e93ef9e78dcb3d395e
|
Shell
|
fangfeixiang/fang
|
/lnmp.sh
|
UTF-8
| 1,336
| 3.109375
| 3
|
[] |
no_license
|
#!/bin/bash
#本脚本用于一键安装lnmp并启动服务,后续补充优化
#1.安装nginx
yum -y install wget
[ ! -d /root/data ] && mkdir /root/data
cd data
wget ftp://192.168.4.254/soft/lnmp_soft.tar.gz
tar -xf lnmp_soft.tar.gz
cd lnmp_soft && tar -xf nginx-1.12.2.tar.gz && cd nginx-1.12.2
yum -y install gcc pcre pcre-devel openssl openssl-devel make
useradd -s /sbin/nologin nginx
./configure --user=nginx --group=nginx --prefix=/usr/local/nginx --with-http_ssl_module --with-http_stub_status_module
make && make install
ln -s /usr/local/nginx/sbin/nginx /usr/local/bin/nginx
sed -i '65,71s/#//' /usr/local/nginx/conf/nginx.conf
sed -i '69s/^/#/' /usr/local/nginx/conf/nginx.conf
sed -i 's/fastcgi_params/fastcgi.conf/' /usr/local/nginx/conf/nginx.conf
nginx
echo nginx > /etc/rc.local
chmod +x /etc/rc.local
#安装mysql
cd /root/data
wget ftp://192.168.4.254/soft/mysql-5.7.17.tar
[ ! -d mysql ] && mkdir mysql
tar -xf mysql-5.7.17.tar -C mysql/
cd mysql
yum -y install mysql*
if [ $? -eq 0 ];then
systemctl start mysqld
else
echo "安装出错,请检查"
fi
ini_pass=`grep password "/var/log/mysqld.log" | head -n1 | awk '{print $NF}'`
mysqladmin -uroot -p"${ini_pass}" password "123qqq...A"
systemctl enable mysqld
#安装php
yum -y install php php-fpm php-mysql
systemctl start php-fpm
systemctl enable php-fpm
| true
|
a6e4380bea9ff37d10962f3dc18e3c41baf17dd2
|
Shell
|
piratelinux/piratepack
|
/remove_piratepack.sh
|
UTF-8
| 672
| 2.875
| 3
|
[] |
no_license
|
#!/bin/bash
set -e
basedir="$1"
if [[ "$basedir" == "" ]]
then
basedir="/opt/piratepack"
fi
if [[ "$basedir" != "/" ]]
then
set +e
rm -r "$basedir"
set -e
fi
rm -f /usr/bin/piratepack
rm -f /usr/bin/piratepack-refresh
grep -v "$basedir" /etc/profile > /etc/profile_tmp
mv -f /etc/profile_tmp /etc/profile
rm -f /usr/share/icons/hicolor/16x16/apps/piratepack.png
rm -f /usr/share/icons/hicolor/22x22/apps/piratepack.png
rm -f /usr/share/icons/hicolor/32x32/apps/piratepack.png
rm -f /usr/share/icons/hicolor/48x48/apps/piratepack.png
rm -f /usr/share/icons/hicolor/64x64/apps/piratepack.png
rm -f /usr/share/icons/hicolor/128x128/apps/piratepack.png
| true
|
ae22f627ffdafedc14ca2d5943ee0a632c19441a
|
Shell
|
martell/ellcc
|
/bin-extra/ecc-getsubarch
|
UTF-8
| 248
| 3.421875
| 3
|
[
"MIT"
] |
permissive
|
#! /bin/sh
# This script returns the arch for a tuple.
#
case "$1" in
arm*v6*) ARCH=armv6 ;;
arm64*) ARCH=arm64 ;;
arm*sf) ARCH=armsf ;;
arm*) ARCH=armhf ;;
mips*sf) ARCH=mipssf ;;
mips*) ARCH=mipshf ;;
*) echo unknown && exit 1 ;;
esac
echo $ARCH
| true
|
f01415c64da37f03d76ddab4edfb0ecd9fe80c13
|
Shell
|
liqsword/2016-Oct-L2
|
/Data/Module2-GainInsights/Setup/initial_setup/cli/setup.sh
|
UTF-8
| 2,404
| 3.828125
| 4
|
[
"MIT"
] |
permissive
|
#!/bin/bash
clear
startTime=$(date)
declare resourceGroupName=""
declare location=""
pathToTemplate="./parameters.json"
pathToParameterFile="./azuredeploy.json"
deploymentName="deploy$resourceGroupName"
while getopts ":g:l:" arg; do
case "${arg}" in
g)
resourceGroupName=${OPTARG}
;;
l)
location=${OPTARG}
;;
esac
done
shift $((OPTIND-1))
echo "ResourceGroupName: $resourceGroupName"
echo "SubscriptionId: $location"
#Basic environment configuration
azure config mode arm
#Template deployment
azure group create $resourceGroupName $location
azure group deployment create -f $pathToTemplate -e $pathToParameterFile -g $resourceGroupName -n $deploymentName
#Get storage account information
storageAccountName=$(azure storage account list -g $resourceGroupName | grep $resourceGroupName | awk '{print $2}')
storageAccountKey=$(azure storage account keys list $storageAccountName -g $resourceGroupName | grep key1 | awk '{print $3}')
#Create Azure Storage Blob Containers
uploadContainerName="partsunlimited"
processContainerName="processeddata"
azure storage container create -p Off -a $storageAccountName -k $storageAccountKey --container $uploadContainerName
azure storage container create -p Off -a $storageAccountName -k $storageAccountKey --container $processContainerName
#Upload files
shopt -s globstar
assetsFolderPath="../../Assets/"
assetsFolderPathLength=${#assetsFolderPath}
logsFolderPath=${assetsFolderPath}logs
allLogFiles=$logsFolderPath/**/*.txt
for f in $allLogFiles
do
fileName=${f:assetsFolderPathLength}
echo "Uploading $f"
azure storage blob upload --blobtype block --blob $fileName --file $f --container $uploadContainerName --account-name $storageAccountName --account-key $storageAccountKey --concurrenttaskcount 100 --quiet
done
hdInsightFolderPath=${assetsFolderPath}HDInsight/
hdInsightFolderPathLength=${#hdInsightFolderPath}
scriptsFolderPath=${hdInsightFolderPath}Scripts
allScriptsFiles=$scriptsFolderPath/**/*.hql
for f in $allScriptsFiles
do
fileName=${f:hdInsightFolderPathLength}
echo "Uploading $f"
azure storage blob upload --blobtype block --blob $fileName --file $f --container $uploadContainerName --account-name $storageAccountName --account-key $storageAccountKey --concurrenttaskcount 100 --quiet
done
endTime=$(date)
echo "Start time: $startTime"
echo "End time: $endTime"
| true
|
24ece3749feb31fb217ac40a53746fde4651cb1a
|
Shell
|
tomichj/bash_dotfiles
|
/bash/config.bash
|
UTF-8
| 1,510
| 3.15625
| 3
|
[
"MIT"
] |
permissive
|
#!/bin/bash
# If not running interactively, don't do anything
[ -z "$PS1" ] && return
# don't put duplicate lines in the history. See bash(1) for more options
# ... or force ignoredups and ignorespace
HISTCONTROL=ignoredups:ignorespace
# append to the history file, don't overwrite it
shopt -s histappend
# fix spelling
shopt -s cdspell
# make bash check window after each command
# if necessary,
# update the values of LINES and COLUMNS.
shopt -s checkwinsize
# Case-insensitive globbing (used in pathname expansion)
shopt -s nocaseglob
# Tab complete for sudo
complete -cf sudo
# prevent overwriting files with cat
set -o noclobber
# Treat undefined variables as errors
# THIS BREAKS GIT COMPLETION!
#set -o nounset
# Don't clear the screen after quitting a manual page
export MANPAGER="less -X"
# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
HISTSIZE=10000
HISTFILESIZE=10000
PROMPT_COMMAND='history -a'
# set variable identifying the chroot you work in (used in the prompt below)
# if [ -z "$debian_chroot" ] && [ -r /etc/debian_chroot ]; then
# debian_chroot=$(cat /etc/debian_chroot)
# fi
export CLICOLOR=true
export VISUAL=emacs
export EDITOR=emacs
export PAGER=less
# export HISTFILE="$HOME/.bash.history"
umask 022
set -o emacs
# Good old less, make it suck less.
export LESS='-R'
# ---------------- local alias file ------------------
alias add-alias='cat >> ~/.alias.local; source ~/.alias.local'
if [ -f ~/.alias.local ]; then
source ~/.alias.local
fi
| true
|
470c424c3982f3b469193f39dd35e618c562a2dc
|
Shell
|
rshwet14/Real-Life-Script
|
/checkfiles
|
UTF-8
| 595
| 4.03125
| 4
|
[] |
no_license
|
#!/bin/bash
# Author: Shwet Raj
# Date: 22/10/20
# Descripton: Script to check given files are available in the system or not
# Modified: 22/10/20
# Sometimes we need to verify that certain files or essential files are availabe on the system or not especially
# if we are working on different system.
# So it's a alwayas a good practice to check important files available or not.
echo Enter the absolute path of the file name you are looking for:
echo
read FILES
echo
for file in $FILES
do
if [ ! -e $file ]
then
echo $file do not exist!
else
echo File Exist!
fi
done
| true
|
c226cf27598d306473a4e40c2b84565a332f5fcc
|
Shell
|
ohmyzsh/ohmyzsh
|
/themes/agnoster.zsh-theme
|
UTF-8
| 8,374
| 3.40625
| 3
|
[
"MIT"
] |
permissive
|
# vim:ft=zsh ts=2 sw=2 sts=2
#
# agnoster's Theme - https://gist.github.com/3712874
# A Powerline-inspired theme for ZSH
#
# # README
#
# In order for this theme to render correctly, you will need a
# [Powerline-patched font](https://github.com/Lokaltog/powerline-fonts).
# Make sure you have a recent version: the code points that Powerline
# uses changed in 2012, and older versions will display incorrectly,
# in confusing ways.
#
# In addition, I recommend the
# [Solarized theme](https://github.com/altercation/solarized/) and, if you're
# using it on Mac OS X, [iTerm 2](https://iterm2.com/) over Terminal.app -
# it has significantly better color fidelity.
#
# If using with "light" variant of the Solarized color schema, set
# SOLARIZED_THEME variable to "light". If you don't specify, we'll assume
# you're using the "dark" variant.
#
# # Goals
#
# The aim of this theme is to only show you *relevant* information. Like most
# prompts, it will only show git information when in a git working directory.
# However, it goes a step further: everything from the current user and
# hostname to whether the last call exited with an error to whether background
# jobs are running in this shell will all be displayed automatically when
# appropriate.
### Segment drawing
# A few utility functions to make it easy and re-usable to draw segmented prompts
CURRENT_BG='NONE'
case ${SOLARIZED_THEME:-dark} in
light) CURRENT_FG='white';;
*) CURRENT_FG='black';;
esac
# Special Powerline characters
() {
local LC_ALL="" LC_CTYPE="en_US.UTF-8"
# NOTE: This segment separator character is correct. In 2012, Powerline changed
# the code points they use for their special characters. This is the new code point.
# If this is not working for you, you probably have an old version of the
# Powerline-patched fonts installed. Download and install the new version.
# Do not submit PRs to change this unless you have reviewed the Powerline code point
# history and have new information.
# This is defined using a Unicode escape sequence so it is unambiguously readable, regardless of
# what font the user is viewing this source code in. Do not replace the
# escape sequence with a single literal character.
# Do not change this! Do not make it '\u2b80'; that is the old, wrong code point.
SEGMENT_SEPARATOR=$'\ue0b0'
}
# Begin a segment
# Takes two arguments, background and foreground. Both can be omitted,
# rendering default background/foreground.
prompt_segment() {
local bg fg
[[ -n $1 ]] && bg="%K{$1}" || bg="%k"
[[ -n $2 ]] && fg="%F{$2}" || fg="%f"
if [[ $CURRENT_BG != 'NONE' && $1 != $CURRENT_BG ]]; then
echo -n " %{$bg%F{$CURRENT_BG}%}$SEGMENT_SEPARATOR%{$fg%} "
else
echo -n "%{$bg%}%{$fg%} "
fi
CURRENT_BG=$1
[[ -n $3 ]] && echo -n $3
}
# End the prompt, closing any open segments
prompt_end() {
if [[ -n $CURRENT_BG ]]; then
echo -n " %{%k%F{$CURRENT_BG}%}$SEGMENT_SEPARATOR"
else
echo -n "%{%k%}"
fi
echo -n "%{%f%}"
CURRENT_BG=''
}
### Prompt components
# Each component will draw itself, and hide itself if no information needs to be shown
# Context: user@hostname (who am I and where am I)
prompt_context() {
if [[ "$USERNAME" != "$DEFAULT_USER" || -n "$SSH_CLIENT" ]]; then
prompt_segment black default "%(!.%{%F{yellow}%}.)%n@%m"
fi
}
# Git: branch/detached head, dirty status
prompt_git() {
(( $+commands[git] )) || return
if [[ "$(git config --get oh-my-zsh.hide-status 2>/dev/null)" = 1 ]]; then
return
fi
local PL_BRANCH_CHAR
() {
local LC_ALL="" LC_CTYPE="en_US.UTF-8"
PL_BRANCH_CHAR=$'\ue0a0' #
}
local ref dirty mode repo_path
if [[ "$(git rev-parse --is-inside-work-tree 2>/dev/null)" = "true" ]]; then
repo_path=$(git rev-parse --git-dir 2>/dev/null)
dirty=$(parse_git_dirty)
ref=$(git symbolic-ref HEAD 2> /dev/null) || \
ref="◈ $(git describe --exact-match --tags HEAD 2> /dev/null)" || \
ref="➦ $(git rev-parse --short HEAD 2> /dev/null)"
if [[ -n $dirty ]]; then
prompt_segment yellow black
else
prompt_segment green $CURRENT_FG
fi
local ahead behind
ahead=$(git log --oneline @{upstream}.. 2>/dev/null)
behind=$(git log --oneline ..@{upstream} 2>/dev/null)
if [[ -n "$ahead" ]] && [[ -n "$behind" ]]; then
PL_BRANCH_CHAR=$'\u21c5'
elif [[ -n "$ahead" ]]; then
PL_BRANCH_CHAR=$'\u21b1'
elif [[ -n "$behind" ]]; then
PL_BRANCH_CHAR=$'\u21b0'
fi
if [[ -e "${repo_path}/BISECT_LOG" ]]; then
mode=" <B>"
elif [[ -e "${repo_path}/MERGE_HEAD" ]]; then
mode=" >M<"
elif [[ -e "${repo_path}/rebase" || -e "${repo_path}/rebase-apply" || -e "${repo_path}/rebase-merge" || -e "${repo_path}/../.dotest" ]]; then
mode=" >R>"
fi
setopt promptsubst
autoload -Uz vcs_info
zstyle ':vcs_info:*' enable git
zstyle ':vcs_info:*' get-revision true
zstyle ':vcs_info:*' check-for-changes true
zstyle ':vcs_info:*' stagedstr '✚'
zstyle ':vcs_info:*' unstagedstr '±'
zstyle ':vcs_info:*' formats ' %u%c'
zstyle ':vcs_info:*' actionformats ' %u%c'
vcs_info
echo -n "${${ref:gs/%/%%}/refs\/heads\//$PL_BRANCH_CHAR }${vcs_info_msg_0_%% }${mode}"
fi
}
prompt_bzr() {
(( $+commands[bzr] )) || return
# Test if bzr repository in directory hierarchy
local dir="$PWD"
while [[ ! -d "$dir/.bzr" ]]; do
[[ "$dir" = "/" ]] && return
dir="${dir:h}"
done
local bzr_status status_mod status_all revision
if bzr_status=$(bzr status 2>&1); then
status_mod=$(echo -n "$bzr_status" | head -n1 | grep "modified" | wc -m)
status_all=$(echo -n "$bzr_status" | head -n1 | wc -m)
revision=${$(bzr log -r-1 --log-format line | cut -d: -f1):gs/%/%%}
if [[ $status_mod -gt 0 ]] ; then
prompt_segment yellow black "bzr@$revision ✚"
else
if [[ $status_all -gt 0 ]] ; then
prompt_segment yellow black "bzr@$revision"
else
prompt_segment green black "bzr@$revision"
fi
fi
fi
}
prompt_hg() {
(( $+commands[hg] )) || return
local rev st branch
if $(hg id >/dev/null 2>&1); then
if $(hg prompt >/dev/null 2>&1); then
if [[ $(hg prompt "{status|unknown}") = "?" ]]; then
# if files are not added
prompt_segment red white
st='±'
elif [[ -n $(hg prompt "{status|modified}") ]]; then
# if any modification
prompt_segment yellow black
st='±'
else
# if working copy is clean
prompt_segment green $CURRENT_FG
fi
echo -n ${$(hg prompt "☿ {rev}@{branch}"):gs/%/%%} $st
else
st=""
rev=$(hg id -n 2>/dev/null | sed 's/[^-0-9]//g')
branch=$(hg id -b 2>/dev/null)
if `hg st | grep -q "^\?"`; then
prompt_segment red black
st='±'
elif `hg st | grep -q "^[MA]"`; then
prompt_segment yellow black
st='±'
else
prompt_segment green $CURRENT_FG
fi
echo -n "☿ ${rev:gs/%/%%}@${branch:gs/%/%%}" $st
fi
fi
}
# Dir: current working directory
prompt_dir() {
prompt_segment blue $CURRENT_FG '%~'
}
# Virtualenv: current working virtualenv
prompt_virtualenv() {
if [[ -n "$VIRTUAL_ENV" && -n "$VIRTUAL_ENV_DISABLE_PROMPT" ]]; then
prompt_segment blue black "(${VIRTUAL_ENV:t:gs/%/%%})"
fi
}
# Status:
# - was there an error
# - am I root
# - are there background jobs?
prompt_status() {
local -a symbols
[[ $RETVAL -ne 0 ]] && symbols+="%{%F{red}%}✘"
[[ $UID -eq 0 ]] && symbols+="%{%F{yellow}%}⚡"
[[ $(jobs -l | wc -l) -gt 0 ]] && symbols+="%{%F{cyan}%}⚙"
[[ -n "$symbols" ]] && prompt_segment black default "$symbols"
}
#AWS Profile:
# - display current AWS_PROFILE name
# - displays yellow on red if profile name contains 'production' or
# ends in '-prod'
# - displays black on green otherwise
prompt_aws() {
[[ -z "$AWS_PROFILE" || "$SHOW_AWS_PROMPT" = false ]] && return
case "$AWS_PROFILE" in
*-prod|*production*) prompt_segment red yellow "AWS: ${AWS_PROFILE:gs/%/%%}" ;;
*) prompt_segment green black "AWS: ${AWS_PROFILE:gs/%/%%}" ;;
esac
}
## Main prompt
build_prompt() {
RETVAL=$?
prompt_status
prompt_virtualenv
prompt_aws
prompt_context
prompt_dir
prompt_git
prompt_bzr
prompt_hg
prompt_end
}
PROMPT='%{%f%b%k%}$(build_prompt) '
| true
|
51b0bc1c207f856dc4562e3e0c1e2c95f61c28e3
|
Shell
|
bertyno/buildpack-sample
|
/bin/compile
|
UTF-8
| 1,641
| 3.46875
| 3
|
[] |
no_license
|
#!/usr/bin/env bash
echo "Running cache test..."
BUILD_DIR=$1
CACHE_DIR=$2
BUILD_PACK_DIR=$(dirname $(dirname $0))
ls $BUILD_DIR
echo "JAVA_HOME " $JAVA_HOME
echo "Version Java "
java -version
if [ ! -d "$BUILD_DIR" ]; then
echo "Build directory [$BUILD_DIR] does not exist, creating"
mkdir -p "$BUILD_DIR"
else
echo "Build directory [$BUILD_DIR] exists"
fi
if [ ! -d "$CACHE_DIR" ]; then
echo "Cache directory [$CACHE_DIR] does not exist, creating"
mkdir -p "$CACHE_DIR"
else
echo "Cache directory [$CACHE_DIR] exists"
fi
echo "The compile script is at [$0]"
echo "The build pack is situated at [$BUILD_PACK_DIR]"
echo "Moving to the cache dir..."
cd "$CACHE_DIR"
echo "Now in [$(pwd)]"
echo "Directory listing:"
ls -la
echo "Listing Build Pack Directory:"
ls -la /tmp/buildpacks
echo "Listing Build Pack Cache:"
ls -la "$BUILDPACK_CACHE"
echo "Listing Platform Config:"
cat "$PLATFORM_CONFIG"
echo "Listing Environment:"
env
echo "Listing script versions:"
python -V
ruby -v
perl -v
cd $BUILD_DIR
curl -O http://apache.mirrors.timporter.net/maven/maven-3/3.1.0/binaries/apache-maven-3.1.0-bin.tar.gz
tar -zxvf apache-maven-3.1.0-bin.tar.gz
mkdir java
tar -zxvf $BUILDPACK_CACHE/openjdk-1.6.0_27.tar.gz -C java
echo "Version Java "
java/bin/java -version
echo "Current directory " $0
echo "Current directory pwd"
pwd
export JAVA_HOME=$BUILD_DIR/java
export PATH="$PATH:$JAVA_HOME/bin"
export PATH="$PATH:/tmp/staged/app/apache-maven-3.1.0/bin"
echo "Java version with JAVA_HOME added to PATH"
java -version
echo "Maven Version"
apache-maven-3.1.0/bin/mvn -version
#apache-maven-3.1.0/bin/mvn install
| true
|
aa4e6a8e625c40e3c978e4e92d64974c614161ab
|
Shell
|
brownman/docker-selenium
|
/xvfb/bin/wait-xvfb.sh
|
UTF-8
| 226
| 3.171875
| 3
|
[
"Apache-2.0"
] |
permissive
|
#!/usr/bin/env bash
# Exit immediately if a command exits with a non-zero status
set -e
echo "Waiting for Xvfb to be ready..."
while ! xdpyinfo -display ${DISPLAY}; do
echo -n ''
sleep 0.1
done
echo "Done wait-xvfb.sh"
| true
|
7e88618f92a7b2a9ffd3c05cdf750fc9ef38ad6c
|
Shell
|
jitsi/jitsi-meet
|
/doc/jaas/update-asap-daily.sh
|
UTF-8
| 520
| 2.515625
| 3
|
[
"MIT",
"Apache-2.0"
] |
permissive
|
JWT_KID=$(cat /etc/jitsi/token-generator/config | grep SYSTEM_ASAP_BASE_URL_MAPPINGS | cut -d= -f2- | jq -r .[].kid)
JWT_DATE=$(echo -n $JWT_KID | cut -d/ -f2-)
JWT_DATE=${JWT_DATE#jwt-}
KEY_FILE=/etc/jitsi/token-generator/daily-key
echo -n "set \$jaas_asap_key " > ${KEY_FILE}
ASAP_KEY=$(ASAP_SIGNING_KEY_FILE=/etc/jitsi/token-generator/asap-${JWT_DATE}.key ASAP_JWT_KID="${JWT_KID}" ASAP_EXPIRES_IN="1 day" node /usr/share/token-generator/jwt.js| tail -n1)
echo -n "${ASAP_KEY};" >> ${KEY_FILE}
service nginx reload
| true
|
4c04c90d214cac3c56bde5226e6c6c4b3df5615a
|
Shell
|
rushton/dot-files
|
/.bash_aliases
|
UTF-8
| 5,689
| 3.640625
| 4
|
[] |
no_license
|
#Make some possibly destructive commands more interactive.
alias rm='rm -rf'
alias mv='mv -f'
alias cp='cp -rf'
alias la='ls -la -h'
# Most computers have a reasonable amount of RAM, this will make
# sort rely less on caching results to disk and use memory instead.
alias sort='sort --buffer-size=1024M'
# git alias
alias s='git status'
alias git-recent="git for-each-ref --sort=-committerdate refs/heads/ --format='%(refname)' | sed 's/refs\/heads\///g' | head -n10"
alias s3='fasts3'
alias sum="awk 'BEGIN{total=0}{total = total + \$1}END{print total}'"
alias runningsum="awk 'BEGIN{total=0}{total = total + \$1; print \$1, total; fflush()}'"
alias first="awk '{print \$1}'"
alias lst="awk '{print \$NF}'"
# Sums values by key
# Params:
# $1 - index of the key you want to group by
# $2 - index of the value you want to sum
function sumbykey() {
key_index=${1:-1}
value_index=${2:-2}
awk -v key_index="$key_index" -v value_index="$value_index" '{a[$(key_index)]+= $(value_index)}END{for(k in a){print k, a[k]}}'
}
alias countbykey="awk '{a[\$1]+=1; s+=1}END{for(k in a){print k, a[k]}; print \"===\";print \"total\", s}' | column -t"
alias vi='nvim'
alias date='gdate --iso-8601=seconds'
# echo to stderr instead of stdout
alias echostderr=">&2 echo"
if [ $(command -v gsed) ]; then
alias thousands="gsed --unbuffered ':a;s/\B[0-9]\{3\}\>/,&/;ta'"
else
alias thousands="sed --unbuffered ':a;s/\B[0-9]\{3\}\>/,&/;ta'"
fi
# prints one line of input every nth(determined by param $1) line,
# always includes the laast line
function every() {
awk -v nth="$1" '(NR-1)%nth==0{print}{fflush()}END{print}'
}
# set of functions to convert bytes to various units back and forth
# Usage:
# tb [num_tb]
# given num_tb, the function will echo the number of bytes
# given stdin, the function will convert the first space tokenized value to terabytes
function tb () {
if [ $# -eq 0 ]; then
awk '{print $1/1000/1000/1000/1000, "TB"}'
else
echo $(($1 * 1000 * 1000 * 1000 * 1000)) "B"
fi
}
# Usage:
# gb [num_gb]
# given num_gb, the function will echo the number of bytes
# given stdin, the function will convert the first space tokenized value to gigabytes
function gigs () {
if [ $# -eq 0 ]; then
awk '{print $1/1000/1000/1000, "GB"}'
else
echo $(($1 * 1000 * 1000 * 1000)) "B"
fi
}
# Usage:
# mb [num_mb]
# given num_mb, the function will echo the number of bytes
# given stdin, the function will convert the first space tokenized value to megabytes
function mb () {
if [ $# -eq 0 ]; then
cat /dev/stdin | awk '{print $1/1000/1000, "MB", $0}'
else
echo $(($1 * 1000 * 1000)) "B"
fi
}
# Usage:
# kb [num_kb]
# given num_kb, the function will echo the number of bytes
# given stdin, the function will convert the first space tokenized value to kilobytes
function kb () {
if [ $# -eq 0 ]; then
cat /dev/stdin | awk '{print $1/1000, "KB"}'
else
echo $(($1 * 1000)) "B"
fi
}
alias h='history'
alias ntosp="gsed ':a;N;\$!ba;s/\n/ /g'"
alias ntocomma="sed ':a;N;\$!ba;s/\n/,/g'"
# finds git commits from the last 24 hours authored by me
alias whatdidido='for git_dir in $(find . -name .git -type d -prune);do git --no-pager --git-dir=$git_dir log --pretty=format:"%h - %an, %ar : %s" --since=$(date --date="1 day ago" +"%Y-%m-%dT%H:%M:%S") --author="[rR]ushton" | sed "s#^#${git_dir} #" | awk "{c+=1;print}END{if(c>0){print \"\"}}"; done;'
# Opens a tiled tmux window with all the supplied
# hosts ssh'd into
#
# usage: sshall <host1> <host2> <host3> ...
function sshall() {
tmux new-window
for h in $@
do
tmux send-keys "ssh $h" Enter
tmux split -h
tmux select-layout tiled
done
tmux kill-pane
tmux select-layout tiled
}
function tshirt() {
PID=$$
DIVISOR=$(echo "$1" | awk 'BEGIN{divisor=1}/mb/{divisor=1*1024*1024}END{printf "%.1f", divisor}')
cat | sort -n > /tmp/tshirt.$PID
sum=$(awk '{s+=$1}END{print s}' /tmp/tshirt.$PID)
gawk -v divisor=$DIVISOR -v third=$(echo $sum"/3" | bc) '
current_sum >= third{
sums[i++]=current_sum
counts[j++]=current_count
max[k++]=median_arr[length(median_arr)-1]
min[l++]=median_arr[0]
if (length(median_arr) % 2) {
median[m++]=median_arr[(length(median_arr)+1)/2]
} else {
median[m++]=(median_arr[length(median_arr)/2] + median_arr[(length(median_arr)/2) + 1]) / 2.0
}
current_sum=current_count=n=0
delete median_arr
}
{
current_sum+=$1
current_count+=1
median_arr[n++]=$1
total_sum+=$1
total_count+=1
}
END {
sums[i++]=current_sum
counts[j++]=current_count
max[k++]=median_arr[length(median_arr) - 1]
min[l++]=median_arr[0]
if (length(median_arr) % 2) {
median[m++]=median_arr[(length(median_arr)+1)/2]
} else {
median[m++]=(median_arr[length(median_arr)/2] + median_arr[(length(median_arr)/2) + 1]) / 2.0
}
for(k in sums){
printf "%d %d %.3f %.3f %.3f %.3f %.3f\n",
sums[k]/divisor,
counts[k],
sums[k] / counts[k] / divisor,
median[k]/divisor,
min[k]/divisor,
max[k]/divisor,
(counts[k] / total_count)*100
}
}' /tmp/tshirt.$PID | \
awk 'BEGIN{
print "size sum count average median min max pct_of_total_count"
}
NR==1{sz="small"}
NR==2{sz="medium"}
NR==3{sz="large"}
{print sz, $0}' | column -t
rm /tmp/tshirt.$PID
}
| true
|
d3d09ca92f2d18eb5ba6d7aded476c4748db5bd0
|
Shell
|
tumd/dotfiles
|
/.zsh/rc/dynenv.zsh
|
UTF-8
| 1,011
| 3.765625
| 4
|
[] |
no_license
|
# Function to automatically update your environment in all open shells based on
# the content of the file the symlink ~/.dynenv is pointing at.
function -update-dynamic-environment-preexec() {
builtin emulate -L zsh -o no_aliases -o no_unset -o err_return -o pipe_fail -o extended_glob
local _envlink=${ZDOTDIR:-$HOME}/.dynenv
# Only continue if _envlink exists
[[ -e $_envlink ]] || return
# Resolve the symlink to a non-world writable file and return only
# the suffix after '.dynenv_' in the name.
local _env=(${_envlink}(#q@-^W:A)(#q:t:s/${_envlink:t}_//))
if [[ -n $_env && $_env != ${DYNENV:-} ]]; then
# Debug
print $(date +%Y%m%d.%H%M%S) $TTY $_envlink $_env >> /tmp/dynenv
export DYNENV=$_env
builtin source $_envlink >/dev/null || return
fi
}
# Uncomment to enable preexec function.
# add-zsh-hook -- preexec -update-dynamic-environment-preexec || return
# TODO: Finish function that sets the ~/.dynenv symlink
function dynenv() {
emulate -L zsh
}
| true
|
c8d5a37e1b6844b7ccbb0d2ff93041ba7708a743
|
Shell
|
rajashree/Catalog
|
/Dell_Mercurial/mv_dell_acs/chef/cookbooks/content-server/files/default/chef-deploy.sh
|
UTF-8
| 391
| 2.953125
| 3
|
[] |
no_license
|
#!/bin/bash
echo "Executing deploy.sh"
sh /etc/marketvine/deploy.sh
if [ $? -ne 0 ]
then
echo "Rolling back"
/etc/marketvine/rollback.sh
if [ $? -ne 0 ] ; then
echo "Rollback failed"
#echo 'Two errors'
#Two errors. Deploy failed and rollback failed
exit 2
else
echo "Rollback successful"
#echo 'One error'
#One error. Deploy failed but rollback succeeded
exit 1
fi
fi
| true
|
f397cb0a0692e0068c69ae53434c5f60d1a149c4
|
Shell
|
snizovtsev/compdb
|
/contrib/zsh/check-all-helps
|
UTF-8
| 642
| 3.75
| 4
|
[
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] |
permissive
|
#!/bin/bash
set -o errexit
cd $(dirname "${BASH_SOURCE[0]}")
compdb --help > all-helps.txt.new
compdb help | grep "^ [a-z]" | while read command descr; do
echo
echo
echo "# $command"
echo
compdb $command --help
done >> all-helps.txt.new
if ! diff -u all-helps.txt{,.new}; then
cat <<EOF
------------------------------------------------
A change in the CLI interface has been detected,
consider updating the following file:
functions/_compdb
To remove this notice, update 'all-helps.txt':
pushd $(pwd)
cp all-helps.txt.new all-helps.txt
popd
EOF
exit 1
fi
rm all-helps.txt.new
echo "Up-to-date!"
| true
|
7cef4e103580e6d10f6ff37845bc6bd03967207d
|
Shell
|
totherme/tiny-bash-calc
|
/integration/test.bash
|
UTF-8
| 1,426
| 3.46875
| 3
|
[] |
no_license
|
#!/usr/bin/env bash
set -euo pipefail
[[ -z "${DEBUG:-""}" ]] || set -x
T_calc_evaluates_an_expression() {
local expr="8 + 3\nq" result i=0
for line in $(echo -e "$expr" | ./calc) ; do
result[i]="$line"
i=$(( i + 1 ))
done
if [[ ! "${result[1]}" == "11" ]] ; then
# shellcheck disable=SC2154
$T_fail "expected ${result[1]} to be 11"
return
fi
}
T_calc_evaluates_multiple_expressions() {
local expr="8 + 3\n12 - 5\nq" result i=0
for line in $(echo -e "$expr" | ./calc) ; do
result[i]="$line"
i=$(( i + 1 ))
done
if [[ ! "${result[1]}" == "11" ]] ; then
# shellcheck disable=SC2154
$T_fail "expected ${result[1]} to be 11"
return
fi
if [[ ! "${result[3]}" == "7" ]] ; then
# shellcheck disable=SC2154
$T_fail "expected ${result[3]} to be 7"
return
fi
}
T_calc_can_do_multiplication() {
local expr="8 * 3\nq" result i=0
for line in $(echo -e "$expr" | ./calc) ; do
result[i]="$line"
i=$(( i + 1 ))
done
if [[ ! "${result[1]}" == "24" ]] ; then
# shellcheck disable=SC2154
$T_fail "expected ${result[1]} to be 24"
return
fi
}
T_calc_can_do_complex_expressions() {
local expr="2 + 3 * 4\nq" result i=0
for line in $(echo -e "$expr" | ./calc) ; do
result[i]="$line"
i=$(( i + 1))
done
if [[ ! "${result[1]}" == "14" ]] ; then
# shellcheck disable=SC2154
$T_fail "expected ${result[1]} to be 14"
return
fi
}
| true
|
71a017739d3d27f4b0c0d3a57a5eaaa4b58bbeeb
|
Shell
|
nipan09/sturdy-telegram
|
/bash.sh
|
UTF-8
| 493
| 3.703125
| 4
|
[] |
no_license
|
#!/bin/bash
echo Welcome to arithmetic
read -p "username: "
read -sp "password: " pass
echo
if [ $pass == "abcd" ] #space bw brackets and text
then
echo You are signed in.
for value in {1..3} #two dots
do
echo Input your number
read -p "a: " a #space between var and quote
read -p "b: " b
let "s=$a+$b" #since -p, so quotes
echo Sum is $s
done
else
echo Password is wrong.
fi
| true
|
6c623c239142249da2310c84656e319318beb65e
|
Shell
|
simonsan/dinero-rs
|
/scripts/publish_tag.sh
|
UTF-8
| 1,296
| 3.78125
| 4
|
[] |
no_license
|
set -e
function bump_version() {
local RE='[^0-9]*\([0-9]*\)[.]\([0-9]*\)[.]\([0-9]*\)\([0-9A-Za-z-]*\)'
major=`echo $1 | sed -e "s#$RE#\1#"`
minor=`echo $1 | sed -e "s#$RE#\2#"`
release=`echo $1 | sed -e "s#$RE#\3#"`
# patch=`echo $1 | sed -e "s#$RE#\4#"`
release=0
minor=$((minor+1))
echo "$major.$minor.$release"
}
previous=$(git tag | sort -t "." -k1,1n -k2,2n -k3,3n | tail -n 1)
version=$(grep -E "version = \"([0-9]+\.[0-9]+.[0-9]+(-.*)?)\"" Cargo.toml | grep -Eo -m 1 "[0-9]+\.[0-9]+.[0-9]+")
bumped=$(bump_version ${version})
echo Tagging version $version. Previous version was $previous.
# Publish create the tag
message=$({ echo "${version}\n" & git --no-pager log ${previous}..HEAD --oneline ; } | cat )
git tag -a $version -m "$message"
git push origin $version
#
# Update tag for development
#
message="Bump from ${version} to ${bumped}-dev"
commit_message="[ci skip] ${message}"
# Update Cargo.toml
line_number=$(grep -En "version = \"([0-9]+\.[0-9]+.[0-9]+)\"" Cargo.toml | grep -Eo -m 1 "[0-9]+" | head -n 1)
sed -i "${line_number}s/.*/version = \"${bumped}-dev\"/" Cargo.toml
# Update Changelog
sed -i "3i## [${bumped}] - xxx" CHANGELOG.md
echo ${commit_message}
# Publishing tag
git commit -a -m "${commit_message}"
git push
| true
|
b37fcbdb4aa159c8e3643b044abdfc76021f76ea
|
Shell
|
Plankton86/Kernel_Builder
|
/kernelbuild.sh
|
UTF-8
| 4,605
| 2.90625
| 3
|
[
"Apache-2.0"
] |
permissive
|
#!/usr/bin/env bash
#
# Copyright (C) 2021 a xyzprjkt property
#
# Needed Secret Variable
# KERNEL_NAME | Your kernel name
# KERNEL_SOURCE | Your kernel link source
# KERNEL_BRANCH | Your needed kernel branch if needed with -b. eg -b eleven_eas
# DEVICE_CODENAME | Your device codename
# DEVICE_DEFCONFIG | Your device defconfig eg. lavender_defconfig
# ANYKERNEL | Your Anykernel link repository
# TG_TOKEN | Your telegram bot token
# TG_CHAT_ID | Your telegram private ci chat id
# BUILD_USER | Your username
# BUILD_HOST | Your hostname
echo "|| Downloading few Dependecies . . .||"
# Kernel Sources
git clone --depth=1 $KERNEL_SOURCE $KERNEL_BRANCH $DEVICE_CODENAME
git clone --depth=1 https://github.com/Plankton00/Predator_Clang_14.git Predator # Predator set as Clang Default
# Main Declaration
KERNEL_ROOTDIR=$(pwd)/$DEVICE_CODENAME # IMPORTANT ! Fill with your kernel source root directory.
DEVICE_DEFCONFIG=$DEVICE_DEFCONFIG # IMPORTANT ! Declare your kernel source defconfig file here.
CLANG_ROOTDIR=$(pwd)/Predator # IMPORTANT! Put your clang directory here.
export KBUILD_BUILD_USER=$BUILD_USER # Change with your own name or else.
export KBUILD_BUILD_HOST=$BUILD_HOST # Change with your own hostname.
# Main Declaration
CLANG_VER="$("$CLANG_ROOTDIR"/bin/clang --version | head -n 1 | perl -pe 's/\(http.*?\)//gs' | sed -e 's/ */ /g' -e 's/[[:space:]]*$//')"
LLD_VER="$("$CLANG_ROOTDIR"/bin/ld.lld --version | head -n 1)"
export KBUILD_COMPILER_STRING="$CLANG_VER with $LLD_VER"
IMAGE=$(pwd)/$DEVICE_CODENAME/out/arch/arm64/boot/Image.gz-dtb
DATE=$(date "+%B %-d, %Y")
ZIP_DATE=$(date +"%Y%m%d")
START=$(date +"%s")
# Checking environtment
# Warning !! Dont Change anything there without known reason.
function check() {
echo ================================================
echo xKernelCompiler
echo version : rev1.5 - gaspoll modified
echo ================================================
echo BUILDER NAME = ${KBUILD_BUILD_USER}
echo BUILDER HOSTNAME = ${KBUILD_BUILD_HOST}
echo DEVICE_DEFCONFIG = ${DEVICE_DEFCONFIG}
echo TOOLCHAIN_VERSION = ${KBUILD_COMPILER_STRING}
echo CLANG_ROOTDIR = ${CLANG_ROOTDIR}
echo KERNEL_ROOTDIR = ${KERNEL_ROOTDIR}
echo ================================================
}
# Telegram
export BOT_MSG_URL="https://api.telegram.org/bot$TG_TOKEN/sendMessage"
tg_post_msg() {
curl -s -X POST "$BOT_MSG_URL" -d chat_id="$TG_CHAT_ID" \
-d "disable_web_page_preview=true" \
-d "parse_mode=html" \
-d text="$1"
}
# Post Main Information
tg_post_msg "<b>🔨 Building Kernel Started!</b>%0A<b>Builder Name: </b><code>${KBUILD_BUILD_USER}</code>%0A<b>Builder Host: </b><code>${KBUILD_BUILD_HOST}</code>%0A<b>Build For: </b><code>$DEVICE_CODENAME</code>%0A<b>Build Date: </b><code>$DATE</code>%0A<b>Build started on: </b><code>DroneCI</code>%0A<b>Clang Rootdir : </b><code>${CLANG_ROOTDIR}</code>%0A<b>Kernel Rootdir : </b><code>${KERNEL_ROOTDIR}</code>%0A<b>Compiler Info:</b>%0A<code>${KBUILD_COMPILER_STRING}</code>%0A%0A1:00 ●━━━━━━─────── 2:00 ⇆ㅤㅤㅤ ㅤ◁ㅤㅤ❚❚ㅤㅤ▷ㅤㅤㅤㅤ↻"
# Compile
compile(){
tg_post_msg "<b>xKernelCompiler:</b><code>Compilation has started"
cd ${KERNEL_ROOTDIR}
make -j$(nproc) O=out ARCH=arm64 ${DEVICE_DEFCONFIG}
make -j$(nproc) ARCH=arm64 O=out \
CC=${CLANG_ROOTDIR}/bin/clang \
AR=${CLANG_ROOTDIR}/bin/llvm-ar \
NM=${CLANG_ROOTDIR}/bin/llvm-nm \
OBJCOPY=${CLANG_ROOTDIR}/bin/llvm-objcopy \
OBJDUMP=${CLANG_ROOTDIR}/bin/llvm-objdump \
STRIP=${CLANG_ROOTDIR}/bin/llvm-strip \
CROSS_COMPILE=${CLANG_ROOTDIR}/bin/aarch64-linux-gnu- \
CROSS_COMPILE_ARM32=${CLANG_ROOTDIR}/bin/arm-linux-gnueabi-
if ! [ -a "$IMAGE" ]; then
finerr
exit 1
fi
git clone --depth=1 $ANYKERNEL AnyKernel
cp $IMAGE AnyKernel
}
# Push kernel to channel
function push() {
cd AnyKernel
ZIP=$(echo *.zip)
curl -F document=@$ZIP "https://api.telegram.org/bot$TG_TOKEN/sendDocument" \
-F chat_id="$TG_CHAT_ID" \
-F "disable_web_page_preview=true" \
-F "parse_mode=html" \
-F caption="✅ $(($DIFF / 60)) minute(s) and $(($DIFF % 60)) second(s)"
}
# Fin Error
function finerr() {
curl -s -X POST "https://api.telegram.org/bot$TG_TOKEN/sendMessage" \
-d chat_id="$TG_CHAT_ID" \
-d "disable_web_page_preview=true" \
-d "parse_mode=markdown" \
-d text="❌ Build throw an error(s)"
exit 1
}
# Zipping
function zipping() {
cd AnyKernel || exit 1
zip -r9 [HMP]$KERNEL_NAME-${ZIP_DATE}.zip *
cd ..
}
check
compile
zipping
END=$(date +"%s")
DIFF=$(($END - $START))
push
| true
|
9375d4acdbb508577e2683136ab6f7a85c8f80c0
|
Shell
|
WISEPLAT/binance-bot
|
/scripts/setup.sh
|
UTF-8
| 258
| 2.59375
| 3
|
[] |
no_license
|
#!/bin/sh
echo "Welcome to binance bot manager!"
echo "First, copy settings_tpl.py to settings.py..."
cp settings_tpl.py settings.py
echo "Second, edit settings.py to tuning parameters..."
echo "./start.sh to bootstrap the bot service..."
echo "Done!"
| true
|
3e1b6aa26d4947926aaf1ee4d94b725e61282269
|
Shell
|
cloudcontrollers/bootstrap.cloudcontrollers.com
|
/alfresco/alfresco/alfresco_public_bootstrap_dev.sh
|
UTF-8
| 2,545
| 3.453125
| 3
|
[] |
no_license
|
#!/bin/bash
exec > >(tee -a /var/log/user-data.log|logger -t user-data -s 2>/dev/console) 2>&1
echo "$(date) downloading the current versions of our Downloading bootstrap scripts"
perl -MIO::Socket::INET -e '
until(new IO::Socket::INET("169.254.169.254:80")){print"Waiting for network...\n";sleep 1}
' | logger -t ec2
# The next 3 variables are used to derive the S3 URL for config files. Currently they are set to
# Cloud Controllers public buckets. On reboot, your server will poll these buckets for application
# updates or critical OS configuration updates and execute them. If you choose to "detach" this
# server from our update system, you may wish to copy the current CC bucket to your own S3 account
# and perhaps edit /etc/rc.local and other key files accordingly
export S3_BUCKET=bootstrap.cloudcontrollers.com
export SERVER=alfresco
export ENVIRONMENT=public
# Hostname options: for a fully-qualified domain name (FQDN), e.g. webserver.cloudcontrollers.com, you might
# just enter HOSTNAME=webserver.cloudcontrollers.com or instead reference the variables above with
# HOSTNAME=$SERVER.yourdomain.com, otherwise use the automatically generated EC2 public hostname,
# e.g. ec2-50-17-27-192.compute-1.amazonaws.com by entering
# HOSTNAME=$(curl -s --noproxy 169.254.169.254 http://169.254.169.254/latest/meta-data/public-hostname)
export HOSTNAME=$(curl -s --noproxy 169.254.169.254 http://169.254.169.254/latest/meta-data/public-hostname)
echo "$(date) Installing the s3tools repos to make sure we have the latest debian packages for s3cmd"
wget -O- -q http://s3tools.org/repo/deb-all/stable/s3tools.key | apt-key add -
wget -O/etc/apt/sources.list.d/s3tools.list http://s3tools.org/repo/deb-all/stable/s3tools.list
apt-get update
apt-get -y -qq install s3cmd
echo "$(date) Begining application setup"
echo "$(date) Setting access keys for Cloud Controllers public bucket downloads"
cd /root
wget http://${S3_BUCKET}.s3.amazonaws.com/shared/root/.s3cfg
echo "$(date) Downloading the current versions of our Downloading bootstrap scripts"
mkdir /usr/local/cc
s3cmd --config /root/.s3cfg get --no-progress --recursive --force s3://$S3_BUCKET/shared/app_configuration/ /usr/local/cc/
s3cmd --config /root/.s3cfg get --no-progress --recursive --force s3://$S3_BUCKET/$SERVER/public/app_configuration/ /usr/local/cc/
chmod -R +x /usr/local/cc/*
echo "$(date) Running bootstrap script1"
/usr/local/cc/shared_01_bootstrap.sh
echo "$(date) Running Alfresco App bootstrap script"
/usr/local/cc/01_alfresco_public_bootstrap.sh
| true
|
9e954caad1d1dfd62ec6b3512319fa9c2506fada
|
Shell
|
sachingaikwad123/tmux-powerline
|
/segments/date_full.sh
|
UTF-8
| 91
| 2.578125
| 3
|
[
"BSD-3-Clause"
] |
permissive
|
#!/usr/bin/env sh
# Print the current date in '1 Jan 2012' format
date +"%d %b %Y"
exit 0
| true
|
f970ae0565d61fdc8b284d9ab797c42638649e5c
|
Shell
|
bertvv/scripts
|
/src/cd2img.sh
|
UTF-8
| 731
| 3.875
| 4
|
[] |
no_license
|
#! /usr/bin/env bash
#
# Author: Bert Van Vreckem <bert.vanvreckem@gmail.com>
#
# Read an Audio CD and create an image using cdrdao
# {{{Preamble
set -e # abort on nonzero exitstatus
set -u # abort on unbound variable
# {{{ Functions
usage() {
cat << _EOF_
Usage: ${0} TITLE
Reads an audio cd in disc-at-once mode using cdrdao and creates an image file
and associated table of contents with the specified TITLE. Spaces in the
title will be replaced with underscores.
_EOF_
}
#}}}
#{{{ Command line parsing
if [[ "$#" -ne "1" ]]; then
echo "Expected 1 argument, got $#" >&2
usage
exit 2
fi
#}}}
#{{{ Variables
title="${1// /_}"
#}}}
# }}}
# Script proper
cdrdao read-cd --with-cddb --datafile "${title}".img "${title}".toc
eject
| true
|
4ebb32a3d27fe7f994c79d352016a1b798fc117e
|
Shell
|
7Ji/auto-whu-standard
|
/auto-whu.sh
|
UTF-8
| 5,275
| 3.890625
| 4
|
[] |
no_license
|
#!/bin/bash
# Online check
check_online() {
ping -w1 -W1 -c 1 baidu.com 1>/dev/null 2>&1
[[ $? = 0 ]] && echo "Network is already up" && return 0
return 1
}
# Check online and immediately exit if is running by systemd
check_online && [[ $? = 0 ]] && [[ ! -z "$INVOCATION_ID" ]] && exit
echo "Warning: running auto-whu when already online is dangerous, you may get your account banned for too many login requests. Use systemd and the bundled service and timer file to manage auto-whu instead. Check the repo for more info: https://github.com/7Ji/auto-whu-standard"
# Help message
help () {
echo "Usage: $0 -u [username] -p [password] -n [network] -m [manual network] -u [url] -c [config file] -f -s -h"
echo " -u username, should be a number of 13 digits"
echo " -p password, any value not empty"
echo " -n network, single-digit number from 0 to 3, 0 for CERNET, 1 for China Telcom, 2 for China Unicom, 3 for China Mobile"
echo " -m a manually specified network name, replace the -n option"
echo " -c config file, path to the configuration file"
echo " -a eportal authorization URL, DO NOT SET IT unless you totally understand it"
echo " -f foreground mode, ignore the systemd check"
echo " -s skip check for sanity for username, password and network"
echo " -h print this message"
echo " *notice that all other arguments will overwrite the value provided by the config file"
}
# Check arguments
[[ $# = 0 ]] && help && exit
while [[ $# -ge 1 ]]; do
if [[ "$1" = '-u' ]]; then
ARG_USERNAME="$2"
shift
elif [[ "$1" = '-p' ]]; then
ARG_PASSWORD="$2"
shift
elif [[ "$1" = '-n' ]]; then
ARG_NETWORK="$2"
shift
elif [[ "$1" = '-m' ]]; then
ARG_NETWORK_MANUAL="$2"
shift
elif [[ "$1" = '-a' ]]; then
ARG_URL="$2"
shift
elif [[ "$1" = '-c' ]]; then
ARG_CONFIG="$2"
shift
elif [[ "$1" = '-f' ]]; then
ARG_IGNORE_SYSTEMD='1'
elif [[ "$1" = '-s' ]]; then
ARG_IGNORE_SANITY='1'
elif [[ "$1" = '-h' ]]; then
help && exit
fi
shift
done
# Check and read configuration file if neccessary
if [[ ! -z "$ARG_CONFIG" ]]; then
[[ ! -f "$ARG_CONFIG" ]] && echo "ERROR: The configuration file '$ARG_CONFIG' you've provided does not exist."
[[ ! -r "$ARG_CONFIG" ]] && echo "ERROR: Not allowed to read the configuration file '$ARG_CONFIG', check your permission"
source "$ARG_CONFIG"
fi
[[ ! -z "$ARG_USERNAME" ]] && USERNAME=$ARG_USERNAME
[[ ! -z "$ARG_PASSWORD" ]] && PASSWORD=$ARG_PASSWORD
[[ ! -z "$ARG_NETWORK" ]] && NETWORK=$ARG_NETWORK
[[ ! -z "$ARG_NETWORK_MANUAL" ]] && NETWORK_MANUAL=$ARG_NETWORK_MANUAL
[[ ! -z "$ARG_URL" ]] && URL=$ARG_URL
[[ ! -z "$ARG_IGNORE_SYSTEMD" ]] && IGNORE_SYSTEMD='1'
[[ ! -z "$ARG_IGNORE_SANITY" ]] && IGNORE_SANITY='1'
# Default value downgrading
[[ -z "$NETWORK" && -z "$NETWORK_MANUAL" ]] && NETWORK='0' && echo "Neither network number nor manual network name was set, defaulting network to 0(CERNET)"
[[ -z "$URL" ]] && URL='http://172.19.1.9:8080/eportal/InterFace.do?method=login' && echo "Using default eportial authorization URL 'http://172.19.1.9:8080/eportal/InterFace.do?method=login'"
# Check systemd
if [[ -z "$INVOCATION_ID" && "$IGNORE_SYSTEMD" != 1 ]]; then
echo "You are running this script manually or in a non-systemd environment, it's better to manage this script with systemd."
echo "Check the github repo to learn how to use this script properly: https://github.com/7Ji/auto-whu-standard"
echo "You can set IGNORE_SYSTEMD='1' in the config file or use the argument -f to ignore this check"
fi
# Check intergrity or sanity. return code 1 for insanity.
if [[ "$IGNORE_SANITY" != 1 ]]; then
echo "Starting sanity check for username, password and network, you can set IGNORE_SANITY='1' in config file, or use argument -n to ignore this check."
[[ ! "$USERNAME" =~ ^[0-9]{13}$ ]] && echo "ERROR:The username '$USERNAME' you provided is not a number of 13 digits" && exit 1
[[ -z "$PASSWORD" ]] && echo "ERROR:You've specified an empty password" && exit 1
[[ ! "$NETWORK" =~ ^[0-3]$ && -z "$NETWORK_MANUAL" ]] && echo "ERROR:You've specified a network number not supported, only 0-3 is supported, 0 for CERNET(default), 1 for China Telcom, 2 for China Unicom, 3 for China Mobile" && exit 1
echo "Sanity check pass."
fi
# Network number conversion
if [[ -z "$NETWORK_MANUAL" ]]; then
if [[ "$NETWORK" = 0 ]]; then
NETWORK_STRING=Internet
elif [[ "$NETWORK" = 1 ]]; then
NETWORK_STRING=dianxin
elif [[ "$NETWORK" = 2 ]]; then
NETWORK_STRING=liantong
else
NETWORK_STRING=yidong
fi
else
NETWORK_STRING=$NETWORK_MANUAL
fi
# Authorization
echo "Trying to authorize..."
curl -d "userId=$USERNAME&password=$PASSWORD&service=$NETWORK_STRING&queryString=`curl baidu.com | grep -oP "(?<=\?).*(?=\')" | sed 's/&/%2526/g' | sed 's/=/%253D/g'`&operatorPwd=&operatorUserId=&validcode=&passwordEncrypt=false" $URL 1>/dev/null 2>&1
check_online && [[ $? = 0 ]] && exit
echo "Failed to authorize, you may need to check your account info and credit and network connection"
| true
|
762bb8fae5c1c8c192f047b054ff30a3b9c2e103
|
Shell
|
EricZBL/ClusterBuildScripts
|
/local/install/kafka_local.sh
|
UTF-8
| 6,628
| 3.640625
| 4
|
[] |
no_license
|
#!/bin/bash
################################################################################
## Copyright: HZGOSUN Tech. Co, BigData
## Filename: kafka_local.sh
## Description: kafka 安装
## Version: 2.4
## Author: yinhang
## Created: 2018-07-28
################################################################################
## set -x ## 用于调试用,不用的时候可以注释掉
#---------------------------------------------------------------------#
# 定义变量 #
#---------------------------------------------------------------------#
cd `dirname $0`
## 脚本所在目录
BIN_DIR=`pwd`
cd ../..
## 安装包根目录
ROOT_HOME=`pwd`
## 配置文件目录
CONF_DIR=${ROOT_HOME}/local/conf
## 安装日志目录
LOG_DIR=${ROOT_HOME}/logs
## 安装日志目录
LOG_FILE=${LOG_DIR}/kafkaInstall.log
## kafka 安装包目录
KAFKA_SOURCE_DIR=${ROOT_HOME}/component/bigdata
## 最终安装的根目录,所有bigdata 相关的根目录:/opt/hzgc/bigdata
INSTALL_HOME=$(grep Install_HomeDir ${CONF_DIR}/local_conf.properties|cut -d '=' -f2)
## kafka 集群节点
KAFKA_HOST=$(grep Kafka_InstallNode ${CONF_DIR}/local_conf.properties|cut -d '=' -f2)
##kafka日志目录
KAFKA_LOG=$(grep Cluster_LOGSDir ${CONF_DIR}/local_conf.properties|cut -d '=' -f2)
## KAFKA_INSTALL_HOME kafka 安装目录
KAFKA_INSTALL_HOME=${INSTALL_HOME}/Kafka
## KAFKA_HOME kafka 根目录
KAFKA_HOME=${INSTALL_HOME}/Kafka/kafka
## kafka的config目录
KAFKA_CONFIG=${KAFKA_HOME}/config
## kafka的server.properties文件
KAFKA_SERVER_PROPERTIES=${KAFKA_CONFIG}/server.properties
## kafka的server.properties文件
KAFKA_PRODUCER_PROPERTIES=${KAFKA_CONFIG}/producer.properties
## kafka的application.conf文件
KAFKA_APPLICATION_CONF=${KAFKA_HOME}/kafka-manager/conf/application.conf
## server.properties文件节点名称
SERVER_HOSTS=$(grep zookeeper.connect= ${KAFKA_SERVER_PROPERTIES} | cut -d '=' -f2)
SERVER_HOSTNAMES=(${SERVER_HOSTS//;/ })
## producer.properties文件节点名称
PRODUCER_HOSTS=$(grep bootstrap.servers ${KAFKA_PRODUCER_PROPERTIES} | cut -d '=' -f2)
PRODUCER_HOSTNAMES=(${PRODUCER_HOSTS//;/ })
## application.conf文件
APPLICATION_HOSTS=$(grep kafka-manager.zkhosts=\" ${KAFKA_APPLICATION_CONF} | cut -d '=' -f2 | cut -d '"' -f2)
APPLICATION_HOSTNAMES=(${APPLICATION_HOSTS//;/ })
if [ ! -d $LOG_DIR ];then
mkdir -p $LOG_DIR;
fi
if [ ! -d $KAFKA_LOG ];then
mkdir -p $KAFKA_LOG;
fi
## 首先检查本机上是否安装有 kafka 如果有,则删除本机的 kafka
if [ -e ${KAFKA_HOME} ];then
echo "删除原有 kafka"
rm -rf ${KAFKA_HOME}
fi
mkdir -p ${KAFKA_INSTALL_HOME}
cp -r ${KAFKA_SOURCE_DIR}/kafka ${KAFKA_INSTALL_HOME}
chmod -R 755 ${KAFKA_INSTALL_HOME}
#####################################################################
# 函数名:zookeeper_connect
# 描述: 修改 server_properties 文件中的 zookeeper.connect
# 参数: N/A
# 返回值: N/A
# 其他: N/A
#####################################################################
function zookeeper_connect ()
{
if [[ "${SERVER_HOSTS}" =~ "${KAFKA_HOST}" ]] ; then
echo "zookeeper.connect 配置文件中已添加本机 $KAFKA_HOST 的IP以及端口,不需要重复添加!!!" | tee -a $LOG_FILE
else
sed -i "s#zookeeper.connect=.*#zookeeper.connect=${KAFKA_HOST}:2181#g" ${KAFKA_SERVER_PROPERTIES}
fi
}
#####################################################################
# 函数名:producer_properties
# 描述: 修改producer.properties文件
# 参数: N/A
# 返回值: N/A
# 其他: N/A
#####################################################################
function producer_properties ()
{
if [[ "${PRODUCER_HOSTS}" =~ "${KAFKA_HOST}" ]] ; then
echo "bootstrap.servers配置文件中已添加本机 $KAFKA_HOST 的IP以及端口,不需要重复操作!!!" | tee -a $LOG_FILE
else
sed -i "s#bootstrap.servers=.*#bootstrap.servers=${KAFKA_HOST}:9092#g" ${KAFKA_PRODUCER_PROPERTIES}
fi
}
#####################################################################
# 函数名:application_conf
# 描述: 修改application.conf文件
# 参数: N/A
# 返回值: N/A
# 其他: N/A
#####################################################################
function application_conf ()
{
if [[ "${APPLICATION_HOSTS}" =~ "${KAFKA_HOST}" ]] ; then
echo ${KAFKA_HOST} "节点已添加,不需要重复操作!!!" | tee -a $LOG_FILE
else
value=$(grep kafka-manager.zkhosts=\" ${KAFKA_APPLICATION_CONF} | cut -d '=' -f2 | cut -d '"' -f2)
sed -i "s#kafka-manager.zkhosts=.*#kafka-manager.zkhosts=\"${insName}:2181\"#g" ${KAFKA_APPLICATION_CONF}
fi
}
#####################################################################
# 函数名:server_properties
# 描述: 修改server.properties文件
# 参数: N/A
# 返回值: N/A
# 其他: N/A
#####################################################################
LISTENERS=PLAINTEXT:
LOG_DIRS=/opt/hzgc/logs/kafka/kafka-logs
function server_properties ()
{
num=1
##修改 brokerID
echo "正在修改${KAFKA_HOST}的 broker.id ..." | tee -a $LOG_FILE
sed -i "s#broker.id=.*#broker.id=${num}#g" ${KAFKA_SERVER_PROPERTIES}
echo "${KAFKA_HOST}的 broker.id 配置修改完毕!!!" | tee -a $LOG_FILE
##修改 listeners
echo "正在修改${KAFKA_HOST}的 listeners ..." | tee -a $LOG_FILE
value2=$(grep "listeners=PLAINTEXT" ${KAFKA_SERVER_PROPERTIES} | cut -d ':' -f2| sed -n '1p;1q')
sed -i "s#listeners=${LISTENERS}${value2}\:9092#listeners=${LISTENERS}\/\/${KAFKA_HOST}\:9092#g" ${KAFKA_SERVER_PROPERTIES}
echo "${KAFKA_HOST}的 listeners 配置修改完毕!!!" | tee -a $LOG_FILE
## 修改 log.dirs
echo "正在修改${KAFKA_HOST}的 log.dirs ..." | tee -a $LOG_FILE
value3=$(grep "log.dirs" ${KAFKA_SERVER_PROPERTIES} | cut -d '=' -f2)
sed -i "s#log.dirs=${value3}#log.dirs=${LOG_DIRS}#g" ${KAFKA_SERVER_PROPERTIES}
echo "${KAFKA_HOST}的 log.dirs 配置修改完毕!!!" | tee -a $LOG_FILE
}
#####################################################################
# 函数名: main
# 描述: 脚本主要业务入口
# 参数: N/A
# 返回值: N/A
# 其他: N/A
#####################################################################
function main ()
{
zookeeper_connect
producer_properties
application_conf
server_properties
}
#---------------------------------------------------------------------#
# 执行流程 #
#---------------------------------------------------------------------#
## 打印时间
echo "" | tee -a $LOG_FILE
echo "$(date "+%Y-%m-%d %H:%M:%S")" | tee -a $LOG_FILE
main
| true
|
c70abcc7e3392a5e59c1527f944ac7339b69c765
|
Shell
|
gjvanoldenborgh/climexp_data
|
/KNMIData/update_hourly.sh
|
UTF-8
| 2,329
| 3.390625
| 3
|
[] |
no_license
|
#!/bin/bash
method=old
if [ $method = 'old' ]; then
# from the source code of http://projects.knmi.nl/klimatologie/uurgegevens/selectie.cgi
base=http://projects.knmi.nl/klimatologie/uurgegevens
yrnow=`date +%Y`
if [ -s yr_hourly.txt ]; then
yr=`cat yr_hourly.txt`
else
yr=$yrnow
fi
args="lang=nl&byear=$yr&bmonth=1&bday=1&eyear=$yr&emonth=12&eday=31&bhour=1&ehour=24&variabele=T&variabele=TD&variabele=RH"
for station in 210 215 225 235 240 242 249 251 257 260 265 267 269 270 273 275 277 278 279 280 283 286 290 310 319 323 330 340 344 348 350 356 370 375 377 380 391
do
args="$args&stations=$station"
done
curl "$base/getdata_uur.cgi?$args" > KNMI_${yr}_hourly.txt
echo $yrnow > yr_hourly.txt
make hourly2maxdaily
if [ ! -f rx260.dat -o rx260.dat -ot KNMI_${yr}_hourly.txt ]; then
./hourly2maxdaily KNMI_1???s_hourly.txt KNMI_2???_hourly.txt
fi
elif [ $method = mew ]; then
(cd ../KNMIUurData/update.sh; ./update.sh)
for file in ../KNMIUurData/td???_hr.dat ../KNMIUurData/rh???_hr.dat
do
newfile=`basename $file .dat | sed -e 's/rh/rx'`
daily2longer $file 366 max > $newfile
done
echo "generating tp (dewpoint 4 hours earlier) not yet ready"
fi
i=0
rm -f rx_??.dat rx_??.nc
rm -f tp_??.dat tp_??.nc
rm -f td_??.dat td_??.nc
for file in rx???.dat
do
zfile=${file%.dat}.gz
if [ ! -f $zfile -o $zfile -ot $file ]; then
gzip -f -c $file > $zfile
fi
ncfile=${file%.dat}.nc
if [ ! -f $ncfile -o $ncfile -ot $file ]; then
station=${file#rx}
station=${station%.dat}
dat2nc $file p $station $ncfile
fi
if [ $i -lt 10 ]; then
ii=0$i
else
ii=$i
fi
ln -s $ncfile rx_$ii.nc
tfile=td${ncfile#rx}
if [ ! -f $tfile -o $tfile -ot $file ]; then
dat2nc ${tfile%.nc}.dat p $station $tfile
fi
ln -s $tfile td_$ii.nc
tfile=tp${ncfile#rx}
if [ ! -f $tfile -o $tfile -ot $file ]; then
dat2nc ${tfile%.nc}.dat p $station $tfile
fi
ln -s $tfile tp_$ii.nc
i=$((i+1))
done
average_ensemble rx_%%.nc num > rx_num.dat
$HOME/NINO/copyfiles.sh list_rx.txt list_t[dp].txt rx[^_]??.dat t[dp][^_]??.dat rx[^_]??.gz t[dp][^_]??.gz rx_num.dat
$HOME/NINO/copyfiles.sh rx_??.nc td_??.nc tp_??.nc
| true
|
9df73ed7250f7ede5dee9037e6ff36fc54c65b06
|
Shell
|
ChenBaiYii/ShellExample
|
/for/test4.sh
|
UTF-8
| 140
| 2.953125
| 3
|
[] |
no_license
|
#!/bin/bash
# using a variable to hold the list
list='a b c d e'
list=$list" f"
for i in $list
do
echo "have you ever visted $i"
done
| true
|
e37e1a936aaa502e200018f5dd08dc4bec94d16f
|
Shell
|
trgibbons/bsrTools
|
/test/cegma/consolidate_test_blastp_files.sh
|
UTF-8
| 4,717
| 3.453125
| 3
|
[] |
no_license
|
#!/bin/bash
inDir=~/Dropbox/github/bsrTools/test/cegma/by_org/blastp
outDir=~/Dropbox/github/bsrTools/test/cegma
e=5
consolidate() {
orgs=("${@}")
outFile=${outDir}/$(printf "%s" "${orgs[@]}")_1e-${e}.blastp
> $outFile
for org1 in ${orgs[@]}
do
for org2 in ${orgs[@]}
do
cat ${inDir}/${org1}-v-${org2}_1e-${e}.blastp >> $outFile
done
done
}
# All complete
orgs111111=(Athal1f Dmela1f Celeg1f Hsapa1f Scere1f Spomb1f)
consolidate "${orgs111111[@]}"
# Yeast halved
orgs111122=(Athal1f Dmela1f Celeg1f Hsapa1f Scere2e Spomb2e)
consolidate "${orgs111122[@]}"
# Yeast whole
orgs222211=(Athal2e Dmela2e Celeg2e Hsapa2e Scere1f Spomb1f)
consolidate "${orgs222211[@]}"
# 123
orgs112233=(Athal1f Dmela1f Celeg2e Hsapa2e Scere3e Spomb3e)
consolidate "${orgs112233[@]}"
#cat ~/Dropbox/github/bsrTools/test/cegma/by_org/blastp/*1f-v-*1f_1e-5.blastp > ~/Dropbox/github/bsrTools/test/cegma/Athal1fDmela1fCeleg1fHsapa1fScere1fSpomb1f_1e-5.blastp
<<:ORIGINALATTEMPT
################################################################################
#
# This script didn't work the way I expected
# I opted to take a different approach, rather than debug it
#
################################################################################
# Create test files for full-length sequences
for e in 3 5
do
# Specify output file names
selfBlastp=AtCeDmHsScSp_self_1e-${e}.blastp
crossBlastp=AtCeDmHsScSp_cross_1e-${e}.blastp
bothBlastp=AtCeDmHsScSp_both_1e-${e}.blastp
# Empty output files
cat /dev/null > $selfBlastp
cat /dev/null > $crossBlastp
cat /dev/null > $bothBlastp
for org1 in At Ce Dm Hs Sc Sp
do
for org2 in At Ce Dm Hs Sc Sp
do
if [[ $org1 == $org2 ]]
then
# Put self hits in one file...
cat by_org/blastp/${org1}-v-${org2}_1e-${e}.blastp >> $selfBlastp
else
# ...and cross hits in another
cat by_org/blastp/${org1}-v-${org2}_1e-${e}.blastp >> $crossBlastp
fi
cat by_org/blastp/${org1}-v-${org2}_1e-${e}.blastp >> $bothBlastp
done
done
done
# Create test files for S.pombe sequences being halved and all others being complete
for e in 3 5
do
# Specify output file names
selfBlastp=AtCeDmHsScSp2e_self_1e-${e}.blastp
crossBlastp=AtCeDmHsScSp2e_cross_1e-${e}.blastp
bothBlastp=AtCeDmHsScSp2e_both_1e-${e}.blastp
# Empty output files
cat /dev/null > $selfBlastp
cat /dev/null > $crossBlastp
cat /dev/null > $bothBlastp
for org1 in At Ce Dm Hs Sc Sp2e
do
for org2 in At Ce Dm Hs Sc Sp2e
do
if [[ $org1 == $org2 ]]
then
# Put self hits in one file...
cat by_org/blastp/${org1}-v-${org2}_1e-${e}.blastp >> $selfBlastp
else
# ...and cross hits in another
cat by_org/blastp/${org1}-v-${org2}_1e-${e}.blastp >> $crossBlastp
fi
cat by_org/blastp/${org1}-v-${org2}_1e-${e}.blastp >> $bothBlastp
done
done
done
# Create test files for half the sequences being halved
for e in 3 5
do
# Specify output file names
selfBlastp=AtCeDmHs2eSc2eSp2e_self_1e-${e}.blastp
crossBlastp=AtCeDmHs2eSc2eSp2e_cross_1e-${e}.blastp
bothBlastp=AtCeDmHs2eSc2eSp2e_both_1e-${e}.blastp
# Empty output files
cat /dev/null > $selfBlastp
cat /dev/null > $crossBlastp
cat /dev/null > $bothBlastp
for org1 in At Ce Dm Hs2e Sc2e Sp2e
do
for org2 in At Ce Dm Hs2e Sc2e Sp2e
do
if [[ $org1 == $org2 ]]
then
# Put self hits in one file...
cat by_org/blastp/${org1}-v-${org2}_1e-${e}.blastp >> $selfBlastp
else
# ...and cross hits in another
cat by_org/blastp/${org1}-v-${org2}_1e-${e}.blastp >> $crossBlastp
fi
cat by_org/blastp/${org1}-v-${org2}_1e-${e}.blastp >> $bothBlastp
done
done
done
# Create test files for 1/3 of the sequences being in thirds, 1/3 of the sequences being halved, and 1/3 being full length
for e in 3 5
do
# Specify output file names
selfBlastp=AtCeDm2eHs2eSc3eSp3e_self_1e-${e}.blastp
crossBlastp=AtCeDm2eHs2eSc3eSp3e_cross_1e-${e}.blastp
bothBlastp=AtCeDm2eHs2eSc3eSp3e_both_1e-${e}.blastp
# Empty output files
cat /dev/null > $selfBlastp
cat /dev/null > $crossBlastp
cat /dev/null > $bothBlastp
for org1 in At Ce Dm2e Hs2e Sc3e Sp3e
do
for org2 in At Ce Dm2e Hs2e Sc3e Sp3e
do
if [[ $org1 == $org2 ]]
then
# Put self hits in one file...
cat by_org/blastp/${org1}-v-${org2}_1e-${e}.blastp >> $selfBlastp
else
# ...and cross hits in another
cat by_org/blastp/${org1}-v-${org2}_1e-${e}.blastp >> $crossBlastp
fi
cat by_org/blastp/${org1}-v-${org2}_1e-${e}.blastp >> $bothBlastp
done
done
done
ORIGINALATTEMPT
| true
|
dcedbf2c826239b7651634775ce7a6f8cad06d61
|
Shell
|
manandoshi/HPSC
|
/hw2/mpi/conv.sh
|
UTF-8
| 304
| 2.65625
| 3
|
[] |
no_license
|
mpicc -o main main.c -lm
rm conv.csv
touch conv.csv
for i in {1..30}
do
mpirun -np 4 main 'T' $(( 12 * $i * $i)) >> conv.csv
done
for i in {1..30}
do
counter=1
while [ $counter -le 50 ]
do
mpirun -np 4 main 'M' $(( 12 * $i * $i)) >> conv.csv
((counter++))
done
done
| true
|
81cf1663f776586fa9d38365474ddc501b5abcb7
|
Shell
|
ema/dotfiles
|
/bin/openstack-createimg
|
UTF-8
| 1,316
| 3.421875
| 3
|
[] |
no_license
|
#!/bin/sh
sudo bash
DEBIAN_MIRROR='http://192.168.122.1:3142/debian/'
# Choose your image OS
OS=wheezy
KERNEL=linux-image-3.2.0-4-amd64
# Create a (sparse) 8 gig image
dd if=/dev/null bs=1M seek=8192 of=disk.raw
#Create partitions
parted -s disk.raw mklabel msdos
parted -s disk.raw mkpart primary 0% 100%
parted -s disk.raw set 1 boot on
# Install Master Boot Record
install-mbr disk.raw
# Mount the partitions
modprobe dm_mod
kpartx -av disk.raw
# Hopefully it’s loop0p1..
LOOPBACK_PARTITION=/dev/mapper/loop0p1
# Format filesystem
yes | mkfs.ext4 ${LOOPBACK_PARTITION}
# Don’t force a check based on dates
tune2fs -i 0 /dev/mapper/loop0p1
# Mount the disk image
mkdir mnt
mount ${LOOPBACK_PARTITION} mnt/
# Create root partition using debootstrap
debootstrap --include=openssh-server,${KERNEL} ${OS} mnt/ ${DEBIAN_MIRROR}
# Prepare for chroot
mount -t proc proc mnt/proc/
# Use chroot to fix up a few things (locales, mostly)
chroot mnt/ apt-get update
chroot mnt/ apt-get install locales
chroot mnt/ locale-gen en_US.utf8
chroot mnt/ /bin/bash -c "DEBIAN_FRONTEND=noninteractive dpkg-reconfigure locales"
# Finishing the image
chroot mnt/ apt-get upgrade
chroot mnt/ apt-get clean
# Remove persistent device names so that eth0 comes up as eth0
rm mnt/etc/udev/rules.d/70-persistent-net.rules
| true
|
b43ea1e9cf9208ca9f5b2f17afaedf799e079c26
|
Shell
|
5GenCrypto/circ-obfuscation
|
/scripts/prg-info.sh
|
UTF-8
| 1,856
| 3.453125
| 3
|
[] |
no_license
|
#!/usr/bin/env bash
set -e
fname=${1:-kappas.csv}
source "$(dirname "$0")/utils.sh"
count=0
curname=
curmode=
getname () {
if [[ $1 =~ linear ]]; then
echo "linear"
elif [[ $1 =~ xor-and ]]; then
echo "xor-and"
elif [[ $1 =~ xor-maj ]]; then
echo "xor-maj"
fi
}
printline () {
old=$curname
new=$(getname "$name")
row=
if (( $((count % 2)) == 1 )); then
row="\\rowcol "
fi
circ="\texttt{$curname}"
if [[ $curmode =~ ^o ]]; then
circ="$circ\$^*\$"
fi
echo "$row$circ && $result"
if [[ $old != "$new" && $1 == "" ]]; then
echo "\midrule"
fi
curname=$new
count=$((count + 1))
}
while read -r input; do
line=$(echo "$input" | tr -d ' ')
name=$(get_name "$line")
if [[ ! $name =~ ^prg ]]; then
continue
fi
name=$(perl -e "\$line = \"$name\"; \$line =~ s/_/\\\_/g; print \$line")
mode=$(get_mode "$line")
if [[ $mode != dsl ]]; then
continue
fi
if [[ $curname == "" ]]; then
curname=$(getname "$name")
curmode=$mode
fi
if [[ $name != "$curname" && $result != "" ]]; then
printline
fi
curmode=$mode
ninputs="\num{$(get_ninputs "$line")}"
nconsts="\num{$(get_nconsts "$line")}"
nouts="\num{$(get_nouts "$line")}"
size="\num{$(get_size "$line")}"
nmuls="\num{$(get_nmuls "$line")}"
depth="\num{$(get_depth "$line")}"
degree=$(get_degree "$line")
if (( ${#degree} > 6 )); then
degree=$(printf %.2e "$degree")
else
degree="\num{$degree}"
fi
kappa=$(get_kappa_mife "$line" | cut -d'|' -f2)
if [[ $kappa != "[overflow]" ]]; then
kappa="\num{$kappa}"
fi
result="$ninputs && $nconsts && $nouts && $size && $nmuls && $depth && $degree && $kappa \\\\"
done < "$fname"
printline 1
| true
|
20f9b2ebfae49774be29df98e8955bf6a6848738
|
Shell
|
nnkogift/dhis2-tools-ng
|
/setup/parse_config.sh
|
UTF-8
| 1,174
| 3.515625
| 4
|
[] |
no_license
|
# Parse the contents of containers.json into bash variables
CONFIG=$(cat configs/containers.json)
# Abort script on errors
#set -o errexit
# test for a valid json config
TESTCONFIG=$(echo $CONFIG |jq .) || { echo "Invalid containers.json"; exit 1; }
FQDN=$(echo $CONFIG | jq -r .fqdn)
EMAIL=$(echo $CONFIG | jq -r .email)
NETWORK=$(echo $CONFIG | jq -r .network)
MONITORING=$(echo $CONFIG | jq -r .monitoring)
PROXY=$(echo $CONFIG| jq -r .proxy)
ENCDEVICE=$(echo $CONFIG | jq -r .encrypted_device)
ENVIRONMENT=$(cat configs/containers.json |jq ".environment")
if [[ ! $ENVIRONMENT == "null" ]]; then
ENVVARS=$(echo $ENVIRONMENT | jq -c "to_entries[]")
fi
# get configs for individual containers
CONTAINERS=$(echo $CONFIG | jq -c .containers[])
NAMES=$(cat configs/containers.json | jq -r .containers[].name)
TYPES=$(cat configs/containers.json | jq -r .containers[].type)
case $MONITORING in
munin)
# echo "Using munin monitor"
;;
*)
echo "$MONITORING not supported yet"
;;
esac
for TYPE in $TYPES; do
if [ ! -f "containers/$TYPE" ]; then
echo "Profile for $TYPE doesn't exist .. aborting"
exit 1
fi
done
| true
|
6717759fb79102f70b58d0380095f4405385499e
|
Shell
|
Sunitha-Gouda/hello-world
|
/Functions/Employeewage.sh
|
UTF-8
| 741
| 3.359375
| 3
|
[] |
no_license
|
#!/bin/bash -x
numOfWrkDays=20
empRatePerHours=20
isPartTimeEmp=1
isFullTimeEmp=2
randomCheck=$((RANDOM%3))
maxHrsinMonth=20
totalWrkDays=0
totalEmpHrs=0
function getWorkHrs() {
local $randomCheck=$1
case $randomCheck in
$isFullTimeEmp)
empHrs=8 ;;
$isPartTimeEmp)
empHrs=4 ;;
*)
empHrs=0 ;;
esac
echo $empHrs
}
while [[ $totalWrkDays -lt $numOfWrkDays && $totalEmpHrs -lt $maxHrsinMonth ]]
do
((totalWrkDays++))
randomCheck=$((RANDOM%3))
empHrs=" $( getWorkHrs $randomCheck )"
totalEmpHrs=$(($totalEmpHrs+$empHrs))
done
totalSalary=$(($totalEmpHrs*$empRatePerHours))
echo "Total Salary " $totalSalary
| true
|
ac31fcc15069eddac3f7129161711340a604508d
|
Shell
|
satanasov/phpbbgallery
|
/travis/run-slow-tests.sh
|
UTF-8
| 527
| 2.921875
| 3
|
[] |
no_license
|
#!/bin/bash
#
# Collapsible Categories extension for the phpBB Forum Software package.
#
# @copyright (c) 2015 phpBB Limited <https://www.phpbb.com>
# @license GNU General Public License, version 2 (GPL-2.0)
#
set -e
set -x
DB=$1
TRAVIS_PHP_VERSION=$2
EXTNAME=$3
SLOW=$4
if [ "$TRAVIS_PHP_VERSION" == "7.1" ] && [ "$DB" == "mysqli" ] && [ "$SLOW" == "1" ]
then
phpBB/vendor/bin/phpunit --configuration phpBB/ext/"$EXTNAME"/travis/phpunit-"$DB"-travis.xml --bootstrap ./tests/bootstrap.php --group functional,functional1
fi
| true
|
90da02c2e3f7bddf1ecf2b413e64b0e07b98bfdd
|
Shell
|
oWretch/RandomScripts
|
/Synology/LetsEncrypt.sh
|
UTF-8
| 2,058
| 3.09375
| 3
|
[] |
no_license
|
# Generate Lets Encrypt wildcard certificate.
# Based on https://github.com/acmesh-official/acme.sh/wiki/Synology-NAS-Guide
# Run under sudo su -
# Install acme.sh
cd ~
wget https://github.com/acmesh-official/acme.sh/archive/master.tar.gz
tar xvf master.tar.gz
cd acme.sh-master/
./acme.sh --install --nocron --home /usr/local/share/acme.sh --accountemail "email@example.com"
source ~/.profile
# Configure CloudFlare API variables
# The last two variables allow scoping the API token to a specific DNS Zone for security.
export CF_Email="email@example.com"
export CF_Token="MY_SECRET_TOKEN_SUCH_SECRET"
export CF_Account_ID="CLOUDFLARE_ACCOUNT_ID"
export CF_Zone_ID="DNS_ZONE_ID"
# Create the certificate
cd /usr/local/share/acme.sh
./acme.sh --issue \
--home . \
--domain "<url>.dailyfuneral.com" \
--domain "<url>.home.dailyfuneral.com" \
--dns "dns_cf"
# Deploy the certificate into Synology
export SYNO_Username='Admin_Username'
export SYNO_Password='Admin_Password!123'
export SYNO_Certificate=""
./acme.sh --deploy \
--home . \
--domain "<url>.dailyfuneral.com" \
--deploy-hook synology_dsm
# Deploy the certificate for Docker containers
./acme.sh --install-cert \
--home . \
--domain "dailyfuneral.com" \
--cert-file /volume2/docker/<container>/certs/cert.pem \
--key-file /volume2/docker/<container>/certs/privkey.pem \
--fullchain-file /volume1/docker/<container>/certs/fullchain.pem \
--reloadcmd "/usr/local/bin/docker restart <container>"
# Create & deploy the certificate for Plex
./acme.sh --issue \
--home . \
--domain "<url>.dailyfuneral.com" \
--renew-hook "./acme.sh --to-pkcs12 --home . --domain <url>.dailyfuneral.com --password <PfxPassword> && cp -f ./<url>.dailyfuneral.com/<url>.dailyfuneral.com.pfx /volume2/Plex && chown plex:users /volume2/Plex/<url>.dailyfuneral.com.pfx && /var/packages/Plex\ Media\ Server/scripts/start-stop-status stop && /var/packages/Plex\ Media\ Server/scripts/start-stop-status start"
| true
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.