Discussione:
trap duplicato quando c'è un errore
(troppo vecchio per rispondere)
alex
2024-03-17 18:12:20 UTC
Permalink
$ trap 'echo ABC' ERR
$ false
ABC
ABC

Perchè ABC viene stampato due volte?
sm
2024-03-18 15:53:03 UTC
Permalink
$ trap 'echo ABC' ERR $ false ABC ABC
Perchè ABC viene stampato due volte?
Non lo riscontro per cui non so risponderti.
alex
2024-03-18 16:34:52 UTC
Permalink
Post by sm
$ trap 'echo ABC' ERR $ false ABC ABC
Perchè ABC viene stampato due volte?
Non lo riscontro per cui non so risponderti.
Se può servire

$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 22.04.4 LTS
Release: 22.04
Codename: jammy
Giuseppe Della Bianca
2024-03-23 17:18:59 UTC
Permalink
date -R; trap 'echo ABC' ERR
Sat, 23 Mar 2024 18:17:36 +0100


date -r; trap 'echo ABC' ERR
date: l'opzione richiede un argomento -- "r"
Try 'date --help' for more information.
ABC
$ trap 'echo ABC' ERR $ false ABC ABC
Perchè ABC viene stampato due volte?
alex
2024-03-24 11:37:20 UTC
Permalink
...
$ date -R; trap 'echo ABC' ERR
Sun, 24 Mar 2024 09:39:53 +0100

OK!!!

$ date -r; trap 'echo ABC' ERR
date: l'opzione richiede un argomento -- "r"
Usare "date --help" per ulteriori informazioni.
ABC

OK!!!

$ date -r
date: l'opzione richiede un argomento -- "r"
Usare "date --help" per ulteriori informazioni.
ABC
ABC

Boh, non capisco la logica e ora non ho tempo per approfondire
Giuseppe Della Bianca
2024-03-24 15:46:50 UTC
Permalink
Il Sun, 24 Mar 2024 12:37:20 +0100, alex ha scritto:

]zac[
$ date -r date: l'opzione richiede un argomento -- "r"
Usare "date --help" per ulteriori informazioni.
ABC ABC
Boh, non capisco la logica e ora non ho tempo per approfondire
A meno che non ci sia un problema tra la sedia e la tastiera, quella cosa
sembra un doppio errore.

date -r; date -r
date: l'opzione richiede un argomento -- "r"
Try 'date --help' for more information.
ABC
date: l'opzione richiede un argomento -- "r"
Try 'date --help' for more information.
ABC
alex
2024-03-24 16:35:47 UTC
Permalink
Post by Giuseppe Della Bianca
]zac[
$ date -r date: l'opzione richiede un argomento -- "r"
Usare "date --help" per ulteriori informazioni.
ABC ABC
Boh, non capisco la logica e ora non ho tempo per approfondire
A meno che non ci sia un problema tra la sedia e la tastiera, quella cosa
sembra un doppio errore.
date -r; date -r
date: l'opzione richiede un argomento -- "r"
Try 'date --help' for more information.
ABC
date: l'opzione richiede un argomento -- "r"
Try 'date --help' for more information.
ABC
OK, ma a me, mi da triplo ERRORE

$ trap "echo ERRORE" ERR

$ date -r; date -r
date: l'opzione richiede un argomento -- "r"
Usare "date --help" per ulteriori informazioni.
ERRORE
date: l'opzione richiede un argomento -- "r"
Usare "date --help" per ulteriori informazioni.
ERRORE
ERRORE

Continua a leggere su narkive:
Loading...