Skip to content

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/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'
Clone this wiki locally