mirror of
https://github.com/lowRISC/ibex.git
synced 2025-04-22 21:07:34 -04:00
[dv] Shellcheck prettify script
Signed-off-by: Marno van der Maas <mvdmaas+git@lowrisc.org>
This commit is contained in:
parent
322ab3a285
commit
4608df4606
1 changed files with 3 additions and 2 deletions
|
@ -1,4 +1,5 @@
|
|||
_GET_TRACES=$(find -type f -iregex '.*trace_core.*\.log')
|
||||
#!/bin/bash
|
||||
_GET_TRACES=$(find . -type f -iregex '.*trace_core.*\.log')
|
||||
for trace in $_GET_TRACES; do
|
||||
column -t -s $'\t' -o ' ' -R 1,2,3,4,5 $trace > $(dirname $trace)/trace_pretty.log
|
||||
column -t -s $'\t' -o ' ' -R 1,2,3,4,5 "$trace" > "$(dirname "$trace")"/trace_pretty.log
|
||||
done
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue