====== How to compile QGIS on Slackware ======
[[How to compile GRASS GIS on Slackware|Install GRASS GIS]] first.
<code bash>
# switch to root
su -
# replace USERNAME with your non-root username who installed GRASS GIS
if ! echo $PKG_CONFIG_PATH | grep -q /home/USERNA
====== How to download features using the ArcGIS REST API ======
This script requires [[https://jqlang.github.io/jq/|jq]].
<file bash download_arcgis_rest_features.sh>
#!/bin/sh
if [ $# -lt 2 ]; then
echo "Usage: download_arcgis_rest_features.sh REST_URL output"
exit
fi
# URL for an ArcGIS REST API
rest_url=$1
# output filename
output=$2
====== How to compile GRASS GIS on Slackware ======
This HOWTO explains how to compile [[https://grass.osgeo.org/|GRASS GIS]] on Slackware.
<code bash>
# switch to root
su