22 lines
559 B
YAML
22 lines
559 B
YAML
name: Remove header
|
|
description: Remove the header line from CSV and TSV data (unconditionally)
|
|
metadata:
|
|
annotations:
|
|
author: Alexey Volkov <alexey.volkov@ark-kun.com>
|
|
canonical_location: 'https://raw.githubusercontent.com/Ark-kun/pipeline_components/master/components/tables/Remove_header/component.yaml'
|
|
inputs:
|
|
- name: table
|
|
outputs:
|
|
- name: table
|
|
implementation:
|
|
container:
|
|
image: alpine
|
|
command:
|
|
- sh
|
|
- -exc
|
|
- |
|
|
mkdir -p "$(dirname "$1")"
|
|
tail -n +2 <"$0" >"$1"
|
|
- inputPath: table
|
|
- outputPath: table
|