필터 지우기
필터 지우기

Output of system function in Linux

조회 수: 2 (최근 30일)
Torsten Knüppel
Torsten Knüppel 2018년 3월 12일
답변: Ronit 2024년 6월 21일
Dear all,
I would like to execute the following system command
[~, res] = system(['TERM=xterm git -c color.ui=false show --pretty="%cd"'])
to get some information about git. However, the result looks like this
'[?1h=
Wed Mar 8 12:19:18 2017 +0200[m
[m
[K[?1l>'
I would like to get rid of these escape characters starting with square brackets. I already disabled the colouring of the output, because I suspected this to be responsible, but that didn't seem to be the problem. Does it make sense to select a different type of terminal? Or is this maybe some kind of conversion problem?
Thanks!

답변 (1개)

Ronit
Ronit 2024년 6월 21일
Hi Torsten,
To clean up the output by removing these escape sequences, you can use the following git options before running command:
git config --global pager.show cat
This is a method to configure Git to use ‘cat’ as the pager for ‘git show’ commands. This configuration essentially disables paging for ‘git show’, causing the output to be directly printed to the terminal without invoking a pager like ‘less’ or ‘more’. This can be helpful if you want to avoid the pager for certain commands or in scripts where you directly process the command's output.
Hope it helps!

카테고리

Help CenterFile Exchange에서 Source Control Integration에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by