Lenguaje de programación
$ python
$ python -c 'print "x"*50'
$ python -m SimpleHTTPServer
$ python -c "import SimpleHTTPServer;SimpleHTTPServer.test()" (lo mismo pero incluyendo los subdirectorios). Cancelar los procesos con Ctrol+c
$ python3 -m http.server
$ python -m SimpleHTTPServer 8080
$ python -m smtpd -n -c DebuggingServer localhost:25
$ python -m pyftpdlib.ftpserver
$ python -m webbrowser http://web.com
$ python -m urllib http://web.com
$ python -m htmllib test.html
$ python -m filecmp dir1 dir2
$ python -m calendar
$ python -m calendar 2013 07
$ python -c "help('modules')"
$ python -m platform
$ echo "Linux es un sistema genial" | python -m encodings.rot_13
$ echo "Yvahk rf ha fvfgrzn travny" | python -m encodings.rot_13
$ echo "Linux es un sistema genial" | python -m base64 -e
$ echo "TGludXggZXMgdW4gc2lzdGVtYSBnZW5pYWwK" | python -m base64 -d