You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
U is the numerical user id, I did not insert it in my custom column layout as I do not need it.
p means processName, truncated to 10 characters, cut off the end of the string (as the dot is right of the column name). Omitting the dot would have the same effect here, as cutting off the end of the string is the default cutoff.
( is a literal bracket
P is the numerical process ID. You could also cutoff here. Makes little sense to me. But maybe there are applications to this.
) is a literal bracket
g10.(G) is the same formatting as for p10.(P) but now for g group-name and G group-id.
p/P being consistent with u/U and p/P: The uppercase variant being the numerical representation.
e the file event(s). Cutoff numbers are ignored. These are any how only 1-2 single capital letters.
f is the filepath, 30.30 means to leave the first 30 characters, then show a elipsis "………", then "leave last 30 characters. Using the special width number 0 which means, cut it to the remainder of the available terminal width.
The text was updated successfully, but these errors were encountered:
Feature Request
--columns "t u p10.(P) e f30.30"
User Goals
Principles
0
means: Use the remainder of the available width (if the Terminal defines it).p10
would shorten like this: "Plex Media Server" → "Plex Media…"p10.
means cut off the start of the string:p.10
means cut off the end of the string:f30.30
means to leave the first 30 characters, then show a elipsis "………", then "leave last 30 characters, example:/srv/disk-id/Plex/Library/Application Support/Plex Media Server/Plug-in Support/Databases/com.plexapp.plugins.library.db
/srv/disk-id/Plex/Library/Appl…………com.plexapp.plugins.library.db
A-Z
,a-z
,0-9
and.
are literals (whitespaces, punctuation, special symbols like#
,•
or;
t
in there but no--timestamp
argument the default timestamp format is used.Explanation of
--columns "t u p10.(P) g10.(G) e f30.30"
t
means timestamp, at full length, because no number is added.u
means username, at full length, because no number is added.U
is the numerical user id, I did not insert it in my custom column layout as I do not need it.p
means processName, truncated to10
characters, cut off the end of the string (as the dot is right of the column name). Omitting the dot would have the same effect here, as cutting off the end of the string is the default cutoff.(
is a literal bracketP
is the numerical process ID. You could also cutoff here. Makes little sense to me. But maybe there are applications to this.)
is a literal bracketg10.(G)
is the same formatting as forp10.(P)
but now forg
group-name andG
group-id.p/P
being consistent withu/U
andp/P
: The uppercase variant being the numerical representation.e
the file event(s). Cutoff numbers are ignored. These are any how only 1-2 single capital letters.f
is the filepath,30.30
means to leave the first 30 characters, then show a elipsis "………", then "leave last 30 characters. Using the special width number0
which means, cut it to the remainder of the available terminal width.The text was updated successfully, but these errors were encountered: