#!/bin/sh

if [ -f /usr/bin/apt ] 
then
    apt list --installed > $1 2>/dev/null
else
    exit 200
fi
