Links: TECHNOLOGY - PROGRAMMING
Rel: macos; linux; commands; type
Ref:
Tags: #public
cat -
% touch hello.py
% echo "print('Hello World')" > hello.py
% python hello.py
Hello World
%
%
% cat hello.py
print('Hello World')
cat -e
- show full output including non-print characters and \$ at the end of each line
see also: less