mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-01 20:55:24 +02:00
pages*: remove equals sign from option arguments wherever possible (#16908)
This commit is contained in:
parent
86d909fefa
commit
c675540c89
22 changed files with 52 additions and 52 deletions
|
@ -14,7 +14,7 @@
|
||||||
|
|
||||||
- Calcula una expresión:
|
- Calcula una expresión:
|
||||||
|
|
||||||
`bc --expression='{{5 / 3}}'`
|
`bc --expression '{{5 / 3}}'`
|
||||||
|
|
||||||
- Ejecuta un script:
|
- Ejecuta un script:
|
||||||
|
|
||||||
|
@ -22,8 +22,8 @@
|
||||||
|
|
||||||
- Calcula una expresión con la escala especificada:
|
- Calcula una expresión con la escala especificada:
|
||||||
|
|
||||||
`bc --expression='scale = {{10}}; {{5 / 3}}'`
|
`bc --expression '{{scale = 10; 5 / 3}}'`
|
||||||
|
|
||||||
- Calcula una función seno/coseno/arctangente/logaritmo natural/exponencial utilizando `mathlib`:
|
- Calcula una función seno/coseno/arctangente/logaritmo natural/exponencial utilizando `mathlib`:
|
||||||
|
|
||||||
`bc --mathlib --expression='{{s|c|a|l|e}}({{1}})'`
|
`bc --mathlib --expression '{{s|c|a|l|e}}({{1}})'`
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
|
|
||||||
- Usa un directorio personalizado (por defecto la salida de `getconf DARWIN_USER_TEMP_DIR`, o `/tmp`):
|
- Usa un directorio personalizado (por defecto la salida de `getconf DARWIN_USER_TEMP_DIR`, o `/tmp`):
|
||||||
|
|
||||||
`mktemp --tmpdir={{/ruta/a/tempdir}}`
|
`mktemp --tmpdir {{/ruta/a/tempdir}}`
|
||||||
|
|
||||||
- Usa una plantilla de ruta personalizada (las `X` se sustituyen por caracteres alfanuméricos aleatorios):
|
- Usa una plantilla de ruta personalizada (las `X` se sustituyen por caracteres alfanuméricos aleatorios):
|
||||||
|
|
||||||
|
|
|
@ -9,20 +9,20 @@
|
||||||
|
|
||||||
- Lee un archivo en voz alta:
|
- Lee un archivo en voz alta:
|
||||||
|
|
||||||
`say --input-file={{nombre_de_archivo.txt}}`
|
`say --input-file {{nombre_de_archivo.txt}}`
|
||||||
|
|
||||||
- Di una frase con una voz y un ritmo de voz personalizados:
|
- Di una frase con una voz y un ritmo de voz personalizados:
|
||||||
|
|
||||||
`say --voice={{voz}} --rate={{palabras_por_minuto}} "{{Lo siento David, no puedo dejarte hacer eso.}}"`
|
`say --voice {{voz}} --rate {{palabras_por_minuto}} "{{Lo siento David, no puedo dejarte hacer eso.}}"`
|
||||||
|
|
||||||
- Lista las voces disponibles (cada voz habla en un idioma distinto):
|
- Lista las voces disponibles (cada voz habla en un idioma distinto):
|
||||||
|
|
||||||
`say --voice="?"`
|
`say --voice "?"`
|
||||||
|
|
||||||
- Di algo en polaco:
|
- Di algo en polaco:
|
||||||
|
|
||||||
`say --voice={{Zosia}} "{{Litwo, ojczyzno moja!}}"`
|
`say --voice {{Zosia}} "{{Litwo, ojczyzno moja!}}"`
|
||||||
|
|
||||||
- Crea un archivo de audio con el texto hablado:
|
- Crea un archivo de audio con el texto hablado:
|
||||||
|
|
||||||
`say --output-file={{nombre_de_fichero.aiff}} "{{Aquí están los locos.}}"`
|
`say --output-file {{nombre_de_fichero.aiff}} "{{Aquí están los locos.}}"`
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
|
|
||||||
- Escribe el resultado en otro archivo:
|
- Escribe el resultado en otro archivo:
|
||||||
|
|
||||||
`shuf {{nombre_archivo}} --output={{nombre_archivo_salida}}`
|
`shuf {{nombre_archivo}} --output {{nombre_archivo_salida}}`
|
||||||
|
|
||||||
- Genera números aleatorios en el rango 1-10:
|
- Genera números aleatorios en el rango 1-10:
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
|
|
||||||
- Menuliskan output ke file lain:
|
- Menuliskan output ke file lain:
|
||||||
|
|
||||||
`shuf {{nama_file}} --output={{nama_file_output}}`
|
`shuf {{nama_file}} --output {{nama_file_output}}`
|
||||||
|
|
||||||
- Men-generate angka acak dari 1-10:
|
- Men-generate angka acak dari 1-10:
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
|
|
||||||
- 수식 계산:
|
- 수식 계산:
|
||||||
|
|
||||||
`bc --expression='{{5 / 3}}'`
|
`bc --expression '{{5 / 3}}'`
|
||||||
|
|
||||||
- 스크립트 실행:
|
- 스크립트 실행:
|
||||||
|
|
||||||
|
@ -22,8 +22,8 @@
|
||||||
|
|
||||||
- 지정된 스케일로 수식 계산:
|
- 지정된 스케일로 수식 계산:
|
||||||
|
|
||||||
`bc --expression='scale = {{10}}; {{5 / 3}}'`
|
`bc --expression '{{scale = 10; 5 / 3}}'`
|
||||||
|
|
||||||
- `mathlib`을 사용하여 사인/코사인/아크탄젠트/자연 로그/지수 함수 계산:
|
- `mathlib`을 사용하여 사인/코사인/아크탄젠트/자연 로그/지수 함수 계산:
|
||||||
|
|
||||||
`bc --mathlib --expression='{{s|c|a|l|e}}({{1}})'`
|
`bc --mathlib --expression '{{s|c|a|l|e}}({{1}})'`
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
|
|
||||||
- 사용자 정의 디렉터리 사용 (`getconf DARWIN_USER_TEMP_DIR`의 출력 또는 `/tmp`가 기본값):
|
- 사용자 정의 디렉터리 사용 (`getconf DARWIN_USER_TEMP_DIR`의 출력 또는 `/tmp`가 기본값):
|
||||||
|
|
||||||
`mktemp --tmpdir={{/경로/대상/임시_폴더}}`
|
`mktemp --tmpdir {{/경로/대상/임시_폴더}}`
|
||||||
|
|
||||||
- 사용자 정의 경로 템플릿 사용 (`X`는 무작위 영숫자 문자로 대체됨):
|
- 사용자 정의 경로 템플릿 사용 (`X`는 무작위 영숫자 문자로 대체됨):
|
||||||
|
|
||||||
|
|
|
@ -9,20 +9,20 @@
|
||||||
|
|
||||||
- [f]파일을 소리내어 읽기:
|
- [f]파일을 소리내어 읽기:
|
||||||
|
|
||||||
`say --input-file={{파일명.txt}}`
|
`say --input-file {{파일명.txt}}`
|
||||||
|
|
||||||
- 사용자 지정 음성과 속도로 문구 말하기:
|
- 사용자 지정 음성과 속도로 문구 말하기:
|
||||||
|
|
||||||
`say --voice={{음성}} --rate={{분당_단어_수}} "{{미안해 데이브, 그렇게 할 수 없어.}}"`
|
`say --voice {{음성}} --rate {{분당_단어_수}} "{{미안해 데이브, 그렇게 할 수 없어.}}"`
|
||||||
|
|
||||||
- 사용 가능한 음성 목록 나열 (다양한 언어로 말하는 음성):
|
- 사용 가능한 음성 목록 나열 (다양한 언어로 말하는 음성):
|
||||||
|
|
||||||
`say --voice="?"`
|
`say --voice "?"`
|
||||||
|
|
||||||
- 폴란드어로 말하기:
|
- 폴란드어로 말하기:
|
||||||
|
|
||||||
`say --voice={{Zosia}} "{{Litwo, ojczyzno moja!}}"`
|
`say --voice {{Zosia}} "{{Litwo, ojczyzno moja!}}"`
|
||||||
|
|
||||||
- 음성 텍스트의 오디오 파일 생성:
|
- 음성 텍스트의 오디오 파일 생성:
|
||||||
|
|
||||||
`say --output-file={{파일명.aiff}} "{{Here's to the Crazy Ones.}}"`
|
`say --output-file {{파일명.aiff}} "{{Here's to the Crazy Ones.}}"`
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
|
|
||||||
- 출력을 다른 파일에 쓰기:
|
- 출력을 다른 파일에 쓰기:
|
||||||
|
|
||||||
`shuf {{경로/대상/입력_파일}} --output={{경로/대상/출력_파일}}`
|
`shuf {{경로/대상/입력_파일}} --output {{경로/대상/출력_파일}}`
|
||||||
|
|
||||||
- 1에서 10까지의 범위에서 무작위 숫자 생성:
|
- 1에서 10까지의 범위에서 무작위 숫자 생성:
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
|
|
||||||
- Bereken een uitdrukking:
|
- Bereken een uitdrukking:
|
||||||
|
|
||||||
`bc --expression='{{5 / 3}}'`
|
`bc --expression '{{5 / 3}}'`
|
||||||
|
|
||||||
- Voer een script uit:
|
- Voer een script uit:
|
||||||
|
|
||||||
|
@ -22,8 +22,8 @@
|
||||||
|
|
||||||
- Bereken een uitdrukking met de gespecificeerde schaal:
|
- Bereken een uitdrukking met de gespecificeerde schaal:
|
||||||
|
|
||||||
`bc --expression='scale = {{10}}; {{5 / 3}}'`
|
`bc --expression '{{scale = 10; 5 / 3}}'`
|
||||||
|
|
||||||
- Bereken een sinus/cosinus/arctangens/natuurlijke logaritme/exponentiële functie met behulp van `mathlib`:
|
- Bereken een sinus/cosinus/arctangens/natuurlijke logaritme/exponentiële functie met behulp van `mathlib`:
|
||||||
|
|
||||||
`bc --mathlib --expression='{{s|c|a|l|e}}({{1}})'`
|
`bc --mathlib --expression '{{s|c|a|l|e}}({{1}})'`
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
|
|
||||||
- Gebruik een aangepaste map (standaard is de uitvoer van `getconf DARWIN_USER_TEMP_DIR`, of `/tmp`):
|
- Gebruik een aangepaste map (standaard is de uitvoer van `getconf DARWIN_USER_TEMP_DIR`, of `/tmp`):
|
||||||
|
|
||||||
`mktemp --tmpdir={{/pad/naar/tempdir}}`
|
`mktemp --tmpdir {{/pad/naar/tempdir}}`
|
||||||
|
|
||||||
- Gebruik een aangepast pad-sjabloon (`X`en worden vervangen door willekeurige alfanumerieke tekens):
|
- Gebruik een aangepast pad-sjabloon (`X`en worden vervangen door willekeurige alfanumerieke tekens):
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
|
|
||||||
- Schrijf de uitvoer naar een ander bestand:
|
- Schrijf de uitvoer naar een ander bestand:
|
||||||
|
|
||||||
`shuf {{pad/naar/invoer_bestand}} --output={{pad/naar/uitvoer_bestand}}`
|
`shuf {{pad/naar/invoer_bestand}} --output {{pad/naar/uitvoer_bestand}}`
|
||||||
|
|
||||||
- Genereer willekeurige getallen in het bereik van 1 tot 10:
|
- Genereer willekeurige getallen in het bereik van 1 tot 10:
|
||||||
|
|
||||||
|
|
|
@ -9,20 +9,20 @@
|
||||||
|
|
||||||
- Przeczytaj z pliku:
|
- Przeczytaj z pliku:
|
||||||
|
|
||||||
`say --input-file={{ścieżka/do/pliku.txt}}`
|
`say --input-file {{ścieżka/do/pliku.txt}}`
|
||||||
|
|
||||||
- Przeczytaj używając konkretnego głosu i prędkości mowy:
|
- Przeczytaj używając konkretnego głosu i prędkości mowy:
|
||||||
|
|
||||||
`say --voice={{głos}} --rate={{słowa_na_minutę}} "{{Przepraszam Dave, ale nie mogę Ci na to pozwolić.}}"`
|
`say --voice {{głos}} --rate {{słowa_na_minutę}} "{{Przepraszam Dave, ale nie mogę Ci na to pozwolić.}}"`
|
||||||
|
|
||||||
- Pokaż listę dostępnych głosów, różne głosy obsługują różne języki:
|
- Pokaż listę dostępnych głosów, różne głosy obsługują różne języki:
|
||||||
|
|
||||||
`say --voice="?"`
|
`say --voice "?"`
|
||||||
|
|
||||||
- Powiedz coś po angielsku:
|
- Powiedz coś po angielsku:
|
||||||
|
|
||||||
`say --voice={{Alex}} "{{Here's to the Crazy Ones.}}"`
|
`say --voice {{Alex}} "{{Here's to the Crazy Ones.}}"`
|
||||||
|
|
||||||
- Stwórz plik audio z tekstu:
|
- Stwórz plik audio z tekstu:
|
||||||
|
|
||||||
`say --output-file={{ścieżka/do/pliku.aiff}} "{{Litwo, ojczyzno moja!}}"`
|
`say --output-file {{ścieżka/do/pliku.aiff}} "{{Litwo, ojczyzno moja!}}"`
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
|
|
||||||
- Calcula uma expressão:
|
- Calcula uma expressão:
|
||||||
|
|
||||||
`bc --expression='{{5 / 3}}'`
|
`bc --expression '{{5 / 3}}'`
|
||||||
|
|
||||||
- Executa um script:
|
- Executa um script:
|
||||||
|
|
||||||
|
@ -22,8 +22,8 @@
|
||||||
|
|
||||||
- Calcula uma expressão com a escala especificada:
|
- Calcula uma expressão com a escala especificada:
|
||||||
|
|
||||||
`bc --expression='scale = {{10}}; {{5 / 3}}'`
|
`bc --expression '{{scale = 10; 5 / 3}}'`
|
||||||
|
|
||||||
- Calcula uma função sine/cosine/arctangent/natural logarithm/exponential usando `mathlib`:
|
- Calcula uma função sine/cosine/arctangent/natural logarithm/exponential usando `mathlib`:
|
||||||
|
|
||||||
`bc --mathlib --expression='{{s|c|a|l|e}}({{1}})'`
|
`bc --mathlib --expression '{{s|c|a|l|e}}({{1}})'`
|
||||||
|
|
|
@ -9,20 +9,20 @@
|
||||||
|
|
||||||
- 播放文本文件内容音频:
|
- 播放文本文件内容音频:
|
||||||
|
|
||||||
`say --input-file={{文件名.txt}}`
|
`say --input-file {{文件名.txt}}`
|
||||||
|
|
||||||
- 用自定义的语音和语音速率说出一个句子:
|
- 用自定义的语音和语音速率说出一个句子:
|
||||||
|
|
||||||
`say --voice={{语音库名}} --rate={{每分钟多少词}} "{{戴夫,我很抱歉,我不能让你那么干。}}"`
|
`say --voice {{语音库名}} --rate {{每分钟多少词}} "{{戴夫,我很抱歉,我不能让你那么干。}}"`
|
||||||
|
|
||||||
- 列出可用的语音库(不同的语音用于不同的语言):
|
- 列出可用的语音库(不同的语音用于不同的语言):
|
||||||
|
|
||||||
`say --voice="?"`
|
`say --voice "?"`
|
||||||
|
|
||||||
- 用波兰语说一个句子:
|
- 用波兰语说一个句子:
|
||||||
|
|
||||||
`say --voice={{Zosia}} "{{Litwo, ojczyzno moja!}}"`
|
`say --voice {{Zosia}} "{{Litwo, ojczyzno moja!}}"`
|
||||||
|
|
||||||
- 创建文本的音频文件:
|
- 创建文本的音频文件:
|
||||||
|
|
||||||
`say --output-file={{文件名.aiff}} "{{献给疯狂的人们。}}"`
|
`say --output-file {{文件名.aiff}} "{{献给疯狂的人们。}}"`
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
|
|
||||||
- 将结果输出写入另一个文件:
|
- 将结果输出写入另一个文件:
|
||||||
|
|
||||||
`shuf {{路径/到/输入文件}} --output={{路径/到/输出文件}}`
|
`shuf {{路径/到/输入文件}} --output {{路径/到/输出文件}}`
|
||||||
|
|
||||||
- 生成范围(1-10)内的随机数:
|
- 生成范围(1-10)内的随机数:
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
|
|
||||||
- Calculate an expression:
|
- Calculate an expression:
|
||||||
|
|
||||||
`bc --expression='{{5 / 3}}'`
|
`bc --expression '{{5 / 3}}'`
|
||||||
|
|
||||||
- Execute a script:
|
- Execute a script:
|
||||||
|
|
||||||
|
@ -22,8 +22,8 @@
|
||||||
|
|
||||||
- Calculate an expression with the specified scale:
|
- Calculate an expression with the specified scale:
|
||||||
|
|
||||||
`bc --expression='scale = {{10}}; {{5 / 3}}'`
|
`bc --expression '{{scale = 10; 5 / 3}}'`
|
||||||
|
|
||||||
- Calculate a sine/cosine/arctangent/natural logarithm/exponential function using `mathlib`:
|
- Calculate a sine/cosine/arctangent/natural logarithm/exponential function using `mathlib`:
|
||||||
|
|
||||||
`bc --mathlib --expression='{{s|c|a|l|e}}({{1}})'`
|
`bc --mathlib --expression '{{s|c|a|l|e}}({{1}})'`
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
|
|
||||||
- Display the list in a specific output format:
|
- Display the list in a specific output format:
|
||||||
|
|
||||||
`herd list --format={{txt|xml|json|md}}`
|
`herd list --format {{txt|xml|json|md}}`
|
||||||
|
|
||||||
- List all commands without describing their arguments:
|
- List all commands without describing their arguments:
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
|
|
||||||
- Use a custom directory (defaults to the output of `getconf DARWIN_USER_TEMP_DIR`, or `/tmp`):
|
- Use a custom directory (defaults to the output of `getconf DARWIN_USER_TEMP_DIR`, or `/tmp`):
|
||||||
|
|
||||||
`mktemp --tmpdir={{/path/to/tempdir}}`
|
`mktemp --tmpdir {{/path/to/tempdir}}`
|
||||||
|
|
||||||
- Use a custom path template (`X`s are replaced with random alphanumeric characters):
|
- Use a custom path template (`X`s are replaced with random alphanumeric characters):
|
||||||
|
|
||||||
|
|
|
@ -9,20 +9,20 @@
|
||||||
|
|
||||||
- Read a file aloud:
|
- Read a file aloud:
|
||||||
|
|
||||||
`say --input-file={{filename.txt}}`
|
`say --input-file {{filename.txt}}`
|
||||||
|
|
||||||
- Say a phrase with a custom voice and speech rate:
|
- Say a phrase with a custom voice and speech rate:
|
||||||
|
|
||||||
`say --voice={{voice}} --rate={{words_per_minute}} "{{I'm sorry Dave, I can't let you do that.}}"`
|
`say --voice {{voice}} --rate {{words_per_minute}} "{{I'm sorry Dave, I can't let you do that.}}"`
|
||||||
|
|
||||||
- List the available voices (different voices speak in different languages):
|
- List the available voices (different voices speak in different languages):
|
||||||
|
|
||||||
`say --voice="?"`
|
`say --voice "?"`
|
||||||
|
|
||||||
- Say something in Polish:
|
- Say something in Polish:
|
||||||
|
|
||||||
`say --voice={{Zosia}} "{{Litwo, ojczyzno moja!}}"`
|
`say --voice {{Zosia}} "{{Litwo, ojczyzno moja!}}"`
|
||||||
|
|
||||||
- Create an audio file of the spoken text:
|
- Create an audio file of the spoken text:
|
||||||
|
|
||||||
`say --output-file={{filename.aiff}} "{{Here's to the Crazy Ones.}}"`
|
`say --output-file {{filename.aiff}} "{{Here's to the Crazy Ones.}}"`
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
|
|
||||||
- Write output to another file:
|
- Write output to another file:
|
||||||
|
|
||||||
`shuf {{path/to/input_file}} --output={{ath/to/output_file}}`
|
`shuf {{path/to/input_file}} --output {{ath/to/output_file}}`
|
||||||
|
|
||||||
- Generate random numbers in the range 1 to 10:
|
- Generate random numbers in the range 1 to 10:
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
|
|
||||||
- Create a new Mac VM from a specific ipsw file:
|
- Create a new Mac VM from a specific ipsw file:
|
||||||
|
|
||||||
`tart create --from-ipsw={{latest|path/to/file.ipsw}} {{vm-name}}`
|
`tart create --from-ipsw {{latest|path/to/file.ipsw}} {{vm-name}}`
|
||||||
|
|
||||||
- Run an existing VM:
|
- Run an existing VM:
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue