Objective
Write a program that prints its single argument with each space expanded to the next 8-column tab stop.
Steps
$ ./tab_expand "a b" | cat -e
a b$
$ ./tab_expand "cursor found another shortcut" | cat -e
cursor found another shortcut$
$ ./tab_expand | cat -e
wrong number of arguments$
Expected files
Allowed functions

Objective
Write a program that prints its single argument with each space expanded to the next 8-column tab stop.
Steps
$ ./tab_expand "a b" | cat -e
a b$
$ ./tab_expand "cursor found another shortcut" | cat -e
cursor found another shortcut$
$ ./tab_expand | cat -e
wrong number of arguments$
Expected files
Allowed functions

Tests
Run the tests to grade your code