screencapture -l non funziona: opzione illegale

0

Ho erroneamente aperto la stessa domanda su StackOverflow. Spero di trovare una spiegazione migliore qui.

Ho visto in molte pagine (ad esempio qui: Come trovo il windowid da passare a screencapture -l? ) che devi usare il comando: screencapture -l per catturare una singola finestra data l'ID.

Tuttavia, quando provo a inserire screencapture -l nel terminale, ottengo questo errore:

screencapture: illegal option -- l

Ho controllato un riferimento e in realtà non riesco a vedere -l come possibile attributo per screencapture: link

Come lo spieghi? Come posso risolvere questo?

    
posta KingBOB 07.09.2013 - 11:09
fonte

1 risposta

1

L'opzione -l richiede un argomento per l'ID della finestra:

$ screencapture -l
screencapture: illegal option -- l
usage: screencapture [-icMPmwsWxSCUtoa] [files]
  -c         force screen capture to go to the clipboard
  -C         capture the cursor as well as the screen. only in non-interactive modes
  -d         display errors to the user graphically
  -i         capture screen interactively, by selection or window
               control key - causes screen shot to go to clipboard
               space key   - toggle between mouse selection and
                             window selection modes
               escape key  - cancels interactive screen shot
  -m         only capture the main monitor, undefined if -i is set
  -M         screen capture output will go to a new Mail message
  -o         in window capture mode, do not capture the shadow of the window
  -P         screen capture output will open in Preview
  -s         only allow mouse selection mode
  -S         in window capture mode, capture the screen not the window
  -t<format> image format to create, default is png (other options include pdf, jpg, tiff and other formats)
  -T<seconds> Take the picture after a delay of <seconds>, default is 5
  -w         only allow window selection mode
  -W         start interaction in window selection mode
  -x         do not play sounds
  -a         do not include windows attached to selected windows
  -r         do not add dpi meta data to image
  -l<windowid> capture this windowsid
  -R<x,y,w,h> capture screen rect
  files   where to save the screen capture, 1 file per screen
$ screencapture -l $(osascript -e 'tell app "Safari" to id of window 1') test.png
$

O se hai una versione precedente di OS X, screencapture potrebbe non includere l'opzione -l . Almeno in 10.8 l'opzione -l viene mostrata solo nel messaggio di aiuto e non nella pagina man.

osascript -e 'tell app "Appname" to id of window 1' non funziona con tutte le applicazioni, ma vedi queste domande per altri modi per trovare gli ID di windows:

risposta data 07.09.2013 - 12:23
fonte

Leggi altre domande sui tag