We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9027dbe commit 14f1f9bCopy full SHA for 14f1f9b
1 file changed
.github/workflows/CpuUsage-Tests-Matrix.yml
@@ -104,9 +104,11 @@ jobs:
104
- name: PREPARE Artifact
105
run: |
106
sudo chown -R $(whoami) $HOME/Artifacts
107
- cat $HOME/Artifacts/PRECISION.LOG | sed '0,/Show_Precision_Histogram/d' > /tmp/1
+ cp $HOME/Artifacts/PRECISION.LOG /tmp/0
108
+ # sed '0,/Show_Precision_Histogram/d' - it exclides matching line
109
+ cat /tmp/0 | sed -n '/Show_Precision_Histogram/,$p' > /tmp/1
110
tac /tmp/1 > /tmp/2
- cat /tmp/2 | sed '0,/Show_Precision_Histogram/d' > /tmp/3
111
+ cat /tmp/2 | sed -n '/Show_Precision_Histogram/,$p' > /tmp/3
112
tac /tmp/3 > $HOME/Artifacts/PRECISION.LOG
113
114
mkdir -p "${{ github.workspace }}/Artifact"
0 commit comments