2021-09-27 shell-cute-tricks shebang line definition offered a cute-trick… 12345678910111213#!/bin/rm# Self-deleting script.# Nothing much seems to happen when you run this... except that the file disappears.WHATEVER=85echo "This line will never print (betcha!)."exit $WHATEVER # Doesn't matter. The script will not exit here. # Try an echo $? after script termination. # You'll get a 0, not a 85. 前一篇 linux-last-command 后一篇 sublime-book-read