If you want to get the path information appended to your script URL, you can use the PATH_INFO CGI variable. Consider the following CGI script: #!/bin/bash echo “Content-Type: text/plain” echo echo $PATH_INFO all this script does it output the PATH_INFO. This script is available at http://swamp.homelinux.net/cgi-bin/pathinfo. If you click on the link, you will see [...]