English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

Linux gitview command

Linux Command大全

The Linux gitview command is used to view the content of files, it will display the hexadecimal and ASCII codes at the same time.

Syntax

gitview [-bchilv][File]

Parameters:

  • -b Monochrome mode, do not use ANSI escape codes to display colors.
  • -c Color mode, use ANSI escape codes to display colors.
  • -h Online help.
  • -i Show the location where the gitview program is stored.
  • -l Do not use the previous display characters.
  • -v Show version information.

Online Examples

View the file in color mode using the gitview command/home/ rootlocal/To view the content of "demo.txt", enter the following command:

$ gitview -c /home/rootlocal/demo.txt      # View the content of the specified file using the gitview command

Linux Command大全