This file is indexed.

/usr/share/sagemath/bin/sage-download-upstream is in sagemath-common 7.4-9.

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