Ulf Dunkel writes: > The litteral console output was: > > ----- snip ----- > calamus:~# cd /var/lib/mailman/bin/ > calamus:/var/lib/mailman/bin# unshunt > -bash: unshunt: command not found > calamus:/var/lib/mailman/bin# > ----- snap -----
On Unix, for various reasons, the current directory is normally *not* in the search path for commands. You need to prefix the command name with the directory name (for current directory, you can abbreviate that to "./") like this: calamus:/var/lib/mailman/bin# ./unshunt <options and identifiers> ------------------------------------------------------ Mailman-Users mailing list [email protected] http://mail.python.org/mailman/listinfo/mailman-users Mailman FAQ: http://wiki.list.org/x/AgA3 Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/ Unsubscribe: http://mail.python.org/mailman/options/mailman-users/archive%40jab.org Security Policy: http://wiki.list.org/x/QIA9
