5 lines
80 B
Bash
5 lines
80 B
Bash
|
#!/bin/bash
|
||
|
if [[ "$TERM" == "screen" ]] ; then
|
||
|
export TERM=xterm-256color
|
||
|
fi
|