I am writing code to interpret command output lson Linux (to make it more beginner friendly). As one of the test cases, I ran the command "ls -l / dev / tty" and it returned
crw-rw-rw- 1 root root 5, 0 Apr 15 23:46 /dev/tty
What is the meaning of the first char 'c' value in the first column? I know "d", "l" and "-". Could you list all the possible values ββfor this field?
source
share