문제

For the obvious reason I do not want to export COLUMNS in my normal bash shell.

However for the purpose of one particular subshell, I need access to the value of COLUMNS of its parent. In other words, in a regular bash shell, I want to call a shell script that uses ls -Cw $COLUMNS, with the value of $COLUMNS from its parent.

Is there any way to access a parent's environment variables other than them being exported by the parent?

도움이 되었습니까?

해결책

You can't. But there are ways to get the number of columns other than environment variables. For example

COLUMNS=$(tput cols)
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top