(冒号)GNU Bash内置的目的是什么?
# poor man's delay functionfor ((x=0;x<100000;++x)) ; do : ; done# inserting comments into string of commandscommand ; command ; : we need a comment in here for some reason ; command# an alias for `true' (lazy programming)while : ; do command ; done
慕神8447489