There was an error while loading. Please reload this page.
To create a hello world window, just call BigBashView as follows:
BigBashView
$ ./bigbashview.py 'execute$echo Hello World!'
To create a more fancy hello world, you coud try to create a script and call it, as follows:
$ vim hello.sh
#!/bin/bash echo " <html> <head> <title>Hello World at `BigBashView` 3</title> </head> <body> <h1>Hello $USER!</h1> <p>`date`</p> </body> </html> "
$chmod +x hello.sh $./bigbashview.py 'execute$hello.sh'