Login
- ssh :
ssh bandit2@bandit.labs.overthewire.org -p 2220
- password :
263JGJPfgU6LtdEvgfWU1XP5yac29mFx
Task
- read form a file that contains spaces in its name
Solution
- the answer is you either skip the spaces using a
\
cat ./space\ in\ this\ filename
or you may also open it like this :
cat "space in this filename"