#!/usr/bin/env python3
# Safely run ls
# © Reuben Thomas 2023

import subprocess
import sys


subprocess.check_call(["ls", sys.argv[1]])
