ferret 1286385563 learn The special option -- means "end of options" to every POSIX command except echo and test. E.g., mv -- *.png /somedir TheBonsai 1300610887 forget TheBonsai 1300610919 learn The special option -- means "end of options" to every POSIX command except echo and test. E.g., mv -- *.png /somedir | see also http://wiki.bash-hackers.org/dict/terms/end_of_options e36freak 1316030673 forget e36freak 1316030679 learn The special option -- means "end of options" to every POSIX command except echo and test. E.g., mv -- *.png /somedir # see also http://wiki.bash-hackers.org/dict/terms/end_of_options Hello71 1508071394 forget Hello71 1508071395 learn The special option -- means "end of options" to every POSIX command except echo and test: mv -- *.png /somedir. For globs, consider the more portable ./* instead: mv ./*.png /somedir. Hello71 1508071405 forget geirha 1508579652 learn The special option -- means "end of options" to every POSIX command except echo and test. E.g., mv -- *.png /somedir # see also http://wiki.bash-hackers.org/dict/terms/end_of_options greycat 1561556227 forget greycat 1561556228 learn The special option -- means "end of options" to every POSIX command except echo and test, and to many other commands. E.g. «mv -- *.png /somedir» (in case one of the filenames begins with "-"). See and gnoo 1667746189 forget gnoo 1667746195 learn The special option -- means "end of options" to every POSIX command except echo and test, and to many other commands. E.g. «mv -- *.png /somedir» (in case one of the filenames begins with "-"). See http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap12.html#tag_12_02 and http://wiki.bash-hackers.org/dict/terms/end_of_options