#!/bin/bash
hostname=$(hostname -I)
IFS=' ' read -a ip <<< "$hostname"
jupyter notebook --ip="${ip[0]}" --port 8888 --allow-root
