captura de pantalla -l no funciona: opción no válida

0

He abierto erróneamente la misma pregunta en StackOverflow. Espero encontrar una mejor explicación aquí.

He visto en muchas páginas (por ejemplo aquí: ¿Cómo encuentro el windowid para pasar a screencapture -l? ) que tiene que usar el comando: screencapture -l para capturar una sola ventana con su ID.

Sin embargo, cuando intento ingresar screencapture -l en el terminal, aparece este error:

screencapture: illegal option -- l

He comprobado una referencia y en realidad no puedo ver -l como un posible atributo para captura de pantalla: enlace

¿Cómo explicas esto? ¿Cómo puedo resolver esto?

    
pregunta KingBOB 07.09.2013 - 11:09

1 respuesta

1

La opción -l requiere un argumento para el ID de la ventana:

$ 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 si tiene una versión anterior de OS X, screencapture podría no incluir la opción -l . Al menos en 10.8, la opción -l solo se muestra en el mensaje de ayuda y no en la página de manual.

osascript -e 'tell app "Appname" to id of window 1' no funciona con todas las aplicaciones, pero vea estas preguntas para otras formas de encontrar los ID de Windows:

respondido por el user495470 07.09.2013 - 12:23

Lea otras preguntas en las etiquetas