/usr/share/sagemath/bin/sage-download-upstream is in sagemath-common 8.1-7ubuntu1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 | #!/usr/bin/env bash
for pkg in $SAGE_ROOT/build/pkgs/*
do
if [ -d $pkg ]; then
sage-spkg -d `basename $pkg`
fi
done
|