아이콘 파일을 찾고 싶습니다.
ls Desktop | rg wps
wps-office-prometheus.desktop
목록 내용 wps-office-prometheus.desktop
:
cat Desktop/wps-office-prometheus.desktop
[Desktop Entry]
Comment=Use WPS Writer to office work.
Comment[zh_CN]=使用 WPS 2019进行办公
Exec=/usr/bin/wps %F
GenericName=WPS
GenericName[zh_CN]=WPS 2019
Name=WPS 2019
Name[zh_CN]=WPS 2019
StartupNotify=false
Terminal=false
Type=Application
Categories=Office;WordProcessor;Qt;
X-DBUS-ServiceName=
X-DBUS-StartupType=
X-KDE-SubstituteUID=false
X-KDE-Username=
Icon=wps-office2019-kprometheus
InitialPreference=3
StartupWMClass=wpsoffice
아마도 wps 아이콘이 포함된 파일이 있을 수 wps-office2019-kprometheus
있으며 해당 위치를 찾고 싶습니다.
sudo find /usr -name 'wps-office2019-kprometheus'
sudo find ./ -name 'wps-office2019-kprometheus'
sudo find /var -name 'wps-office2019-kprometheus'
그들 중 누구도 파일을 찾을 수 없습니다. 그러면 어떻게 해야 합니까?
답변1
'wps-office2019-kprometheus'
를 사용 하는 대신 'wps-office2019-kprometheus*'
아이콘 파일 이름에 가 포함되어 있으므로 출력이 나오지 않습니다.확장하다(예: jpg, png, svg 등).
따라서 다음을 실행해야 합니다.
sudo find /usr -name 'wps-office2019-kprometheus*'
또는:
find /usr/share/icons -name 'wps-office2019-kprometheus*'
# Might not be necessary to use 'sudo' and usually the icons are under
# '/usr/share/icons' path.