Saya yakin Anda berbicara tentang indikator yang disajikan oleh ls -F
. Dari halaman manual ls
:
-F, --classify
append indicator (one of */=>@|) to entries
[...]
--indicator-style=WORD
append indicator with style WORD to entry names: none (default), slash (-p),
file-type (--file-type), classify (-F)
Untuk mendapatkan gambaran tentang arti dari indikator-indikator ini, kita harus masuk ke info
halaman seperti yang disarankan di bagian bawah halaman manual ( info coreutils 'ls invocation'
):
`-F'
`--classify'
`--indicator-style=classify'
Append a character to each file name indicating the file type.
Also, for regular files that are executable, append `*'. The file
type indicators are `/' for directories, `@' for symbolic links,
`|' for FIFOs, `=' for sockets, `>' for doors, and nothing for
regular files. Do not follow symbolic links listed on the command
line unless the `--dereference-command-line' (`-H'),
`--dereference' (`-L'), or
`--dereference-command-line-symlink-to-dir' options are specified.
Di atas adalah kutipan yang diambil dari bagian 'Pemformatan output umum'. Pergi ke sana langsung menggunakan info coreutils 'General output formatting'
.
TL; DR