Lo script in esecuzione da BBEdit / TextWrangler fornisce "tput: Nessun valore per $ TERM e no -T specificato"

0

Se scrivo uno script in BBEdit / TextWrangler, ad es.

#!/usr/bin/env python
print 1234

e scegli "Esegui" dal menu #! , ottengo questo in un nuovo documento:

1234
tput: No value for $TERM and no -T specified
tput: No value for $TERM and no -T specified
tput: No value for $TERM and no -T specified

Come faccio a sbarazzarmi di quelle 3 linee extra?

    
posta Ze'ev 25.11.2018 - 21:05
fonte

1 risposta

0

La soluzione è per includere qualsiasi utilizzo di tput in .bash_profile in un test per la shell interattiva, ovvero:

if [[ $- == *i* ]]; then
  #tput command
  #tput command
  #tput command
  #etc
fi
    
risposta data 27.11.2018 - 10:14
fonte

Leggi altre domande sui tag