Skip to content

Instantly share code, notes, and snippets.

@BlazerYoo
Created June 14, 2023 19:04
Show Gist options
  • Save BlazerYoo/6b43e834ab83134efd3207ecdf273436 to your computer and use it in GitHub Desktop.
Save BlazerYoo/6b43e834ab83134efd3207ecdf273436 to your computer and use it in GitHub Desktop.
from IPython.display import JSON
from google.colab import output
from subprocess import getoutput
import os
def shell(command):
if command.startswith('cd'):
path = command.strip().split(maxsplit=1)[1]
os.chdir(path)
return JSON([''])
return JSON([getoutput(command)])
output.register_callback('shell', shell)
# In separate cell, insert below:
#@title Colab Shell
%%html
<div id=term_demo></div>
<script src="https://code.jquery.com/jquery-latest.js"></script>
<script src="https://cdn.jsdelivr.net/npm/jquery.terminal/js/jquery.terminal.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/jquery.terminal/css/jquery.terminal.min.css" rel="stylesheet"/>
<script>
$('#term_demo').terminal(async function(command) {
if (command !== '') {
try {
let res = await google.colab.kernel.invokeFunction('shell', [command])
let out = res.data['application/json'][0]
this.echo(new String(out))
} catch(e) {
this.error(new String(e));
}
} else {
this.echo('');
}
}, {
greetings: 'Welcome to Colab Shell',
name: 'colab_demo',
height: 250,
prompt: 'colab > '
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment