How do I add a newline using printf?
bash, printing, terminal
Solution
To write a newline use `\n` not `/n` the latter is just a slash and a n
Problem
How do I add a new line to a print command using printf? ``` printf "I want this on a new line!" ``` I thought it would be something like this but it didn't work ``` printf "/n I want this on a new line!/n" ```