#!/bin/sh

# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright (C) 2020-present Shanti Gilbert (https://github.com/shantigilbert)
# Copyright (C) 2023 JELOS (https://github.com/JustEnoughLinuxOS)

find /usr/share/retroarch/filters/64bit/video/ -name '*.filt' -print0 |
  while IFS= read -r -d '' line; do
  echo ${line#/usr/share/retroarch/filters/64bit/video/},
done | sort

