File: jupyter-nbextension-jupyter-js-widgets.bug-script

package info (click to toggle)
ipywidgets 6.0.0-4
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 3,860 kB
  • sloc: python: 2,893; sh: 133; makefile: 126
file content (13 lines) | stat: -rwxr-xr-x 245 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

echo "Notebook registry files:"
echo
for file in /etc/jupyter/nbconfig/*.json
do
    if [ -f "$file" ] && [ -r "$file" ]; then
        echo "-- $file"
        cat "$file"
        echo
    fi
done
echo "End of Notebook registry files"