텍스트 파일에서 단어를 강조 표시하는 방법

텍스트 파일에서 단어를 강조 표시하는 방법

다음을 사용하여 텍스트의 특정 부분을 강조하고 싶습니다.고양이. 어떻게 이럴 수있어? 정답은고양이 파일 이름 | grep 단어 당신의 도움에 감사드립니다

답변1

대답은 다음과 같습니다.불가능한.

Usage: cat [OPTION]... [FILE]...
Concatenate FILE(s) to standard output.

With no FILE, or when FILE is -, read standard input.

  -A, --show-all           equivalent to -vET
  -b, --number-nonblank    number nonempty output lines, overrides -n
  -e                       equivalent to -vE
  -E, --show-ends          display $ at end of each line
  -n, --number             number all output lines
  -s, --squeeze-blank      suppress repeated empty output lines
  -t                       equivalent to -vT
  -T, --show-tabs          display TAB characters as ^I
  -u                       (ignored)
  -v, --show-nonprinting   use ^ and M- notation, except for LFD and TAB
      --help     display this help and exit
      --version  output version information and exit

Examples:
  cat f - g  Output f's contents, then standard input, then g's contents.
  cat        Copy standard input to standard output.

GNU coreutils online help: <http://www.gnu.org/software/coreutils/>
Full documentation at: <http://www.gnu.org/software/coreutils/cat>

cat의 "핵심" 기능은 문자 그대로 연결하는 것입니다. 다시 말해 - 그렇지 않은 모든 것연결하다 - 또는(사물)을 서로 연결하다- 중복된 것으로 간주되어야 함

관련 정보