How to use cut command in bash to show all columns except those indicated? July 29, 2023 by Tarik Using cut: cut -d ' ' -f 2- input-file should do what you want.