Skip to content
Snippets Groups Projects
Commit 709bcbbd authored by Max Nyberg Carlsson's avatar Max Nyberg Carlsson
Browse files

Data cleaning script

parent 5cb6b494
Branches master
No related tags found
No related merge requests found
#!/bin/bash
file=$1
name=${file%.*}
echo $name'_acc.txt'
echo $name'_gyr.txt'
awk '/ACC/' $1 > $name'_acc.txt'
awk '/GYR/' $1 > $name'_gyr.txt'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment