A bunch of new pages:
common/: dig, gzip, rm, sort, zfs, zpool
linux/: apt-get, shutdown
osx/: airport, caffeinate, diskutil, networksetup open, pgrep, qlmanage, say, shutdown, sysctl, system_profiler
Edits to existing pages:
curl: Added simple download example
find: Added iname and size exmaples
grep: Edited -c description
ps: Added wide lines example
ssh: edited -D description, added simple port forwarding example
unzip: added list option
2014-02-10 20:36:05 +00:00
|
|
|
# say
|
|
|
|
|
2016-01-28 22:33:21 +00:00
|
|
|
> Converts text to speech.
|
2024-01-31 10:20:27 +00:00
|
|
|
> More information: <https://keith.github.io/xcode-man-pages/say.1.html>.
|
A bunch of new pages:
common/: dig, gzip, rm, sort, zfs, zpool
linux/: apt-get, shutdown
osx/: airport, caffeinate, diskutil, networksetup open, pgrep, qlmanage, say, shutdown, sysctl, system_profiler
Edits to existing pages:
curl: Added simple download example
find: Added iname and size exmaples
grep: Edited -c description
ps: Added wide lines example
ssh: edited -D description, added simple port forwarding example
unzip: added list option
2014-02-10 20:36:05 +00:00
|
|
|
|
2016-02-12 23:05:17 +00:00
|
|
|
- Say a phrase aloud:
|
A bunch of new pages:
common/: dig, gzip, rm, sort, zfs, zpool
linux/: apt-get, shutdown
osx/: airport, caffeinate, diskutil, networksetup open, pgrep, qlmanage, say, shutdown, sysctl, system_profiler
Edits to existing pages:
curl: Added simple download example
find: Added iname and size exmaples
grep: Edited -c description
ps: Added wide lines example
ssh: edited -D description, added simple port forwarding example
unzip: added list option
2014-02-10 20:36:05 +00:00
|
|
|
|
2020-10-04 18:33:38 +01:00
|
|
|
`say "{{I like to ride my bike.}}"`
|
A bunch of new pages:
common/: dig, gzip, rm, sort, zfs, zpool
linux/: apt-get, shutdown
osx/: airport, caffeinate, diskutil, networksetup open, pgrep, qlmanage, say, shutdown, sysctl, system_profiler
Edits to existing pages:
curl: Added simple download example
find: Added iname and size exmaples
grep: Edited -c description
ps: Added wide lines example
ssh: edited -D description, added simple port forwarding example
unzip: added list option
2014-02-10 20:36:05 +00:00
|
|
|
|
2016-02-12 23:05:17 +00:00
|
|
|
- Read a file aloud:
|
A bunch of new pages:
common/: dig, gzip, rm, sort, zfs, zpool
linux/: apt-get, shutdown
osx/: airport, caffeinate, diskutil, networksetup open, pgrep, qlmanage, say, shutdown, sysctl, system_profiler
Edits to existing pages:
curl: Added simple download example
find: Added iname and size exmaples
grep: Edited -c description
ps: Added wide lines example
ssh: edited -D description, added simple port forwarding example
unzip: added list option
2014-02-10 20:36:05 +00:00
|
|
|
|
2022-02-14 11:21:43 +00:00
|
|
|
`say --input-file={{filename.txt}}`
|
A bunch of new pages:
common/: dig, gzip, rm, sort, zfs, zpool
linux/: apt-get, shutdown
osx/: airport, caffeinate, diskutil, networksetup open, pgrep, qlmanage, say, shutdown, sysctl, system_profiler
Edits to existing pages:
curl: Added simple download example
find: Added iname and size exmaples
grep: Edited -c description
ps: Added wide lines example
ssh: edited -D description, added simple port forwarding example
unzip: added list option
2014-02-10 20:36:05 +00:00
|
|
|
|
2016-02-12 23:05:17 +00:00
|
|
|
- Say a phrase with a custom voice and speech rate:
|
2014-02-17 16:16:23 +00:00
|
|
|
|
2022-02-14 11:21:43 +00:00
|
|
|
`say --voice={{voice}} --rate={{words_per_minute}} "{{I'm sorry Dave, I can't let you do that.}}"`
|
2014-02-26 23:49:40 +00:00
|
|
|
|
2022-11-09 12:13:25 +00:00
|
|
|
- List the available voices (different voices speak in different languages):
|
2014-02-26 23:49:40 +00:00
|
|
|
|
2022-02-14 11:21:43 +00:00
|
|
|
`say --voice="?"`
|
2016-01-28 22:33:21 +00:00
|
|
|
|
2022-11-09 12:13:25 +00:00
|
|
|
- Say something in Polish:
|
|
|
|
|
|
|
|
`say --voice={{Zosia}} "{{Litwo, ojczyzno moja!}}"`
|
|
|
|
|
2016-01-28 22:33:21 +00:00
|
|
|
- Create an audio file of the spoken text:
|
|
|
|
|
2022-02-14 11:21:43 +00:00
|
|
|
`say --output-file={{filename.aiff}} "{{Here's to the Crazy Ones.}}"`
|