``` bash ls 1>&2 pwd 1>&2 awk '{system("ls "$2)}' /home/u1/flag.txt ``` The shell don't support `cat`. We use `ls 1>&2` to know the target file.We use `pwd 1>&2` to know which directory we were in. Now,get flag!
Original writeup (https://asciinema.org/a/w1aRjuk6BetTV7Cgcov7nPrK9).