PAGER를 사용하여 가장 널리 사용되는 쉘에 맞는 스크립트를 만들려면 어떻게 해야 합니까?
기본적으로 다음과 같은 스크립트가 있습니다. if [ -t 1 ]; then bold="$(tput bold)" unbold="$(tput sgr0)" else bold="" unbold="" fi TEXT=" ${bold}Hello World${unbold} There's a bunch of text in here that I don't control, but I can escape it, so I put slashes before double quotes (\") and dollar...