Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »

Posts by AdminBee‭

6 posts
83%
+8 −0
Meta Should posting on Meta affect reputation?

Although my reputation would shrink substantially if that change were implemented ;) , I think it is the right choice to prevent votes on meta from affecting the reputation. The reason is that the...

posted 11mo ago by AdminBee‭  ·  edited 10mo ago by AdminBee‭

Answer
77%
+5 −0
Meta Split "installation" into "OS-installation" and "software-installation"

I would like to recommend splitting the "installation" tag into one for "OS-installation" and "software-installation". Although both are installation processes, the challenges associated with them ...

1 answer  ·  posted 11mo ago by AdminBee‭  ·  edited 11mo ago by Quasímodo‭

71%
+3 −0
Q&A How to get number of files in directory

A solution I often use (and which is ultimately a variation of the find-based approach in the answer by Canina) also uses find, but only prints a single . per file: find . -maxdepth 1 -type f -pri...

posted 11mo ago by AdminBee‭  ·  edited 11mo ago by AdminBee‭

Answer
66%
+2 −0
Q&A Can I enter raw strings in fish to avoid escaping regexes for sed?

It is not the most elegant solution, but you may be able to use the string escape function of fish, as in: echo abc | sed -E (string escape 's/b+/X/') This would still escape the special charac...

posted 11mo ago by AdminBee‭  ·  edited 11mo ago by AdminBee‭

Answer
66%
+2 −0
Q&A What does the "Valid" column mean in the output of "faillock"?

A good explanation is given on the RedHat Customer Portal. TL/DR: The Valid field indicates whether a record counts toward the lockout threshold (V) or not (I). The key seems to be the meaning of ...

posted 9mo ago by AdminBee‭  ·  edited 9mo ago by AdminBee‭

Answer
60%
+1 −0
Q&A Simplest way of stripping leading/trailing whitespace from file or program output

If I understand you correctly, you want to skip empty lines at the beginning of a file/stream strip leading and trailing whitespace of non-empty lines skip empty lines at the end of a file/str...

posted 10mo ago by AdminBee‭  ·  edited 9mo ago by AdminBee‭

Answer