ls > /tmp/ls.txt
sudo -u anyuser mkdir /root/hallo 2> /tmp/err.txt
ls 1>&2
ls 2>&1
touch /root/test_rm.txt touch /tmp/test_rm.txt chown anyuser:anyuser /tmp/test_rm.txt su anyuser rm -f $(find / -iname "test_rm.txt") &> /tmp/allOut.txt