Ubuntu – What does `~/ ` mean

command linefilesystem

I'm new to Linux and Ubuntu. People keep using ~/filename in their answers to my questions. What does ~/ mean?

Best Answer

~/ is shorthand for the current user's home folder. So if your user name is "foobar" it expands to /home/foobar/

Related Question