<p><span class="h-card" translate="no"><a href="https://mastodon.social/@whitequark" class="u-url mention">@<span>whitequark</span></a></span> lol take the following example:</p><p>cat << EOF > /sh<br />#!/bin/bash<br />echo "Ignoring args: ${@}"<br />reboot<br />EOF</p><p>chmod +x /sh</p><p>rm -f /bin/sh</p><p>ln -s -t /bin/ /sh</p><p>cat << EOF > /home/user/script<br />#!/bin/sh<br />echo "not gonna happen."<br />EOF</p><p>chmod +x /home/user/script</p><p>bash /home/user/script</p>