Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 20
Basic Usage
EltonFF edited this page Oct 31, 2019
·
2 revisions
To create a hello world window, just call BigBashView as follows:
$ ./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/bashecho"<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'