view bin/quine2 @ 4281:5f388cb353d9

<oerjan> (echo \'#!/bin/bash\'; echo \'echo "$@" | sed -e \'\\\'\'s/^\\([^aeiou]\\+\\)\\(.*\\)$/\\1\\2 shm\\2/\'\\\') >bin/shmify
author HackBot
date Thu, 09 Jan 2014 23:12:03 +0000
parents f2f65a1fa363
children
line wrap: on
line source

#!/bin/sh
a() { p=$(echo -n $(ps -p $1 -oppid | tail -1)); if ps -p $p -ocmd | tail -1 | egrep -q "^sh -c .* \| cat\$"; then ps -p $1 -ocmd | tail -1; else a $p; fi }
q=$(a $$); if echo "$q" | grep -q "^bash -c"; then echo "$q" | sed "s/^bash -c/\`run/"; elif echo "$q" | grep -q "^/bin/sh /hackenv/bin/"; then echo "$q" | sed "s,^/bin/sh /hackenv/bin/,\`,"; else echo \`"$q"; fi