I have a text file : ABC.txt which contain below data
A Apple a day keeps a doctor away 
B I like to play with Ball
C I have cat at my home
D My Dog name is bob
I want to display output on my screen with 10 spaces in a frontend and then my file data
Expected output :
      A Apple a day keeps a doctor away 
      B I like to play with Ball
      C I have cat at my home
      D My Dog name is bob
I have tried this but not working
Command :
cat ABC.txt  | column -t 
 
    