0xV3NOMx
Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64



Your IP : 18.117.151.198


Current Path : /proc/self/root/usr/lib/kubuntu-l10n/libexec/
Upload File :
Current File : //proc/self/root/usr/lib/kubuntu-l10n/libexec/finddesktopfiles

#!/bin/bash

# Find all desktop file styled translatable files.
# This is somewhat based on KDE's findfiles script (in particular the find call).
#
# http://websvn.kde.org/trunk/l10n-kde4/scripts/findfiles?view=log

if test -z "$1"; then
  echo "call: $0 <filename>"
  exit
fi

filelist=$1

rm -f "$filelist"_* $filelist

: > $filelist

find $dir \( -name \*.directory -o -name \*.desktop -o -name \*.desktop.cmake -o -name \*.kimap -o -name \*.themerc -o -name \*.kcsrc -o -name \*.setdlg -o -name index.theme -o -name \*.notifyrc -o -name \*.protocol -o -name \*.profile -o -name \*.actions \) -a \( -type f -o -type l \) >> $filelist

sort -o $filelist -u $filelist