7 lines
81 B
Bash
Executable File

#!/bin/bash
read -p "Ange ett namn: " Namn
printf "$Namn\n" >> namn.txt
exit 0