diff options
author | Oliver Kiddle <opk@zsh.org> | 2023-10-11 00:57:16 +0200 |
---|---|---|
committer | Oliver Kiddle <opk@zsh.org> | 2023-10-11 00:57:16 +0200 |
commit | 985952e2f616c816e24c4cf5aee70416e4f23e07 (patch) | |
tree | e37424c3fec594ba2e03217ee4915f7b1276035c /Completion/Unix/Command/_script | |
parent | 4878c2b1307d54cbdc218ee674403c03bc1e02c1 (diff) | |
download | zsh-985952e2f616c816e24c4cf5aee70416e4f23e07.tar.gz zsh-985952e2f616c816e24c4cf5aee70416e4f23e07.tar.xz zsh-985952e2f616c816e24c4cf5aee70416e4f23e07.zip |
52217: update completions for FreeBSD 14
Diffstat (limited to 'Completion/Unix/Command/_script')
-rw-r--r-- | Completion/Unix/Command/_script | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Completion/Unix/Command/_script b/Completion/Unix/Command/_script index f39cfe535..d38d56f2e 100644 --- a/Completion/Unix/Command/_script +++ b/Completion/Unix/Command/_script @@ -47,7 +47,7 @@ case $OSTYPE in '-q[be quiet: suppress display of starting and ending lines]' '(-a -r -k)-d[suppress sleeps when playing back a session]' '(-a -r -k -t)-p[play back a recorded session]' - '(-d -p)-r[record a session with input, output and timing data]' + '(-d -p -T)-r[record a session with input, output and timing data]' ) ;| netbsd*|openbsd*) @@ -60,7 +60,9 @@ case $OSTYPE in ;| freebsd*) args+=( + '-e[return exit status of the child process]' '-f[use filemon(4)]' + '(-a -r -k -t)-T[play back a recorded session, reporting only timestamps]: :_date_formats' ) ;| darwin*|dragonfly*|freebsd*) @@ -71,8 +73,6 @@ case $OSTYPE in '*:::arguments: _normal $service' ) ;| - darwin*|freebsd*) - ;| *) args+=( '(-p -d)-a[append output]' |