와인 접두사에 어떤 동사가 설치되어 있는지 어떻게 확인합니까?
설치된 것들만 나열하고 싶습니다. 예를 들어, apt 패키지 관리자에서 apt list --installed
설치된 패키지를 표시하도록 입력할 수 있습니다. 그런 것.
답변1
Linux 및 유사한 시스템의 대부분의 다른 프로그램과 마찬가지로 --help
추가는 실행할 때 전달할 수 있는 가능한 콘텐츠의 개요를 인쇄합니다. 따라서 verbs
출력에서 해당 문자열을 검색할 수 있습니다.
$ winetricks --help | grep verbs
Executes given verbs. Each verb installs an application or changes a setting.
--verify Run (automated) GUI tests for verbs, if available
list-all list all categories and their verbs
apps list list verbs in category 'applications'
benchmarks list list verbs in category 'benchmarks'
dlls list list verbs in category 'dlls'
fonts list list verbs in category 'fonts'
games list list verbs in category 'games'
settings list list verbs in category 'settings'
list-cached list cached-and-ready-to-install verbs
list-download list verbs which download automatically
list-manual-download list verbs which download with some help from the user
list-installed list already-installed verbs
보시다시피 옵션 중 하나는 " list all categories and their verbs
" 명령이므로 다음을 시도해 보십시오.
winetricks list-all
로 시작하는 다른 것들이 많이 있으며 list al…
, 편집된 질문에서 요청하신 내용도 그중 하나입니다.
winetricks list-installed