### Prerequisites - [x] make sure you're are using the latest version by `csvtk version` - [x] read the [usage](http://bioinf.shenwei.me/csvtk/usage/) ### Describe your issue `csvtk del-header` on one column removes the empty cells. [example.txt](https://github.com/shenwei356/csvtk/files/12226122/example.txt) Empty cells are included: ``` cat example.txt | csvtk cut -f species ``` Empty cells are removed: ``` cat example.txt | csvtk cut -f species | csvtk del-header ```