Estoy buscando SimpleGrepSedPerlOrPythonOneLiner que da salida a todas las citas en un texto.¿Cómo puedo extraer todas las citas en un texto?
Ejemplo 1:
echo “HAL,” noted Frank, “said that everything was going extremely well.” | SimpleGrepSedPerlOrPythonOneLiner
stdout:
"HAL,"
"said that everything was going extremely well.”
Ejemplo 2:
cat MicrosoftWindowsXPEula.txt | SimpleGrepSedPerlOrPythonOneLiner
stdout:
"EULA"
"Software"
"Workstation Computer"
"Device"
"DRM"
etc.
(link to the corresponding text).
En Windows '^' debe ser escapado. 'cat eula.txt | grep -o "\" [^^ \ "] * \" "' – jfs