#!/bin/bash echo "this script will endlessly loop until you stop it" while true; do : # Do nothing done. After we launch this script it will appear to hang.
確定! 回上一頁