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 »

Search

Advanced Search Options

To further refine your search, you can use additional qualifiers such as score:>0.5. For example, the search score:>=0.5 created:<1y grammar would return only posts mentioning "grammar" that have a score >= 0.5 and were created less than a year ago.

Further help with searching is available in the help center.

Quick hints: tag:tagname, user:xxx, "exact phrase", post_type:xxx, created:<N{d,w,mo,y}, score:>=0.5

Filters
760 posts
 
77%
+5 −0
Q&A What is cat abuse/useless use of cat?

Overview A "useless use" or "abuse" of cat occurs when a Unix pipeline (sequence of commands that feed into each other, using the shell | or "pipe" operator) includes a call to cat that is unneces...

posted 8mo ago by Karl Knechtel‭

Answer
77%
+5 −0
Q&A Does Fedora have cutting edge features, and what makes it so?

I think the Fedora project documentation covers this in the "First" section (emphasis mine): First We are committed to innovation. We are not content to let others do all the heavy lifting on ...

posted 6mo ago by terdon‭  ·  edited 6mo ago by Michael‭

Answer
77%
+5 −0
Q&A How to run a command on a list of files?

There are several options, like xargs and for. I'll leave those for other answers and only describe my favorite, GNU Parallel. You will have to install it separately, because unlike the inferior xa...

posted 1y ago by matthewsnyder‭  ·  edited 1y ago by matthewsnyder‭

Answer
77%
+5 −0
Q&A How to convert Flac to Mp3 with FFmpeg?

I have a directory filled with Flac audio files and I would like to convert them all to Mp3. How do I go about this using FFmpeg? I am using the git FFmpeg and Slackware -current.

2 answers  ·  posted 1y ago by andrew.46‭  ·  last activity 1y ago by matthewsnyder‭

Question FFmpeg Mp3
77%
+5 −0
Q&A When a command takes filenames as argument, how can I avoid creating temporary files?

What you're looking for is called process substitution. In Bash and many bash-like shells, you can use <(foo_command --with --arguments) instead of the file path: diff <(ls /home/alice) &lt...

posted 1y ago by matthewsnyder‭  ·  edited 1y ago by BryKKan‭

Answer
77%
+5 −0
Q&A Copy to clipboard from terminal with Vim bindings

Question How do I copy to clipboard from terminal with yy, assuming it's configured to use Vim bindings? I am using zsh with bindkey -v. MWE Enter something on the commandline (without pressi...

2 answers  ·  posted 1y ago by mcp‭  ·  last activity 1y ago by Mithical‭

77%
+5 −0
Q&A When a command takes filenames as argument, how can I avoid creating temporary files?

This other answer uses process substitutions. Not every shell supports this feature. If your OS provides pathnames for file descriptors (/dev/fd/N or /proc/self/fd/N) then you can use them to achie...

posted 1y ago by Kamil Maciorowski‭

Answer
77%
+5 −0
Q&A How to get number of files in directory

Populate an array of the file names and then print how many entries are in the array: $ ( shopt -s nullglob; files=( .* * ); echo "${#files[@]}" ) 124 That will work correctly even if your fi...

posted 1y ago by Ed Morton‭  ·  edited 2mo ago by Ed Morton‭

Answer
77%
+5 −0
Q&A Recursively remove files with the same name as the ones that end in `.part`

I want to remove all files with the ".part" extension in the current directory and its subdirectories, including files with the same name but different extension. Is this correct? find . -name '*...

3 answers  ·  posted 2y ago by ShadowsRanger‭  ·  last activity 1y ago by jimbobmcgee‭

Question find remove
77%
+5 −0
Q&A How to convert PDF to docx

If your goal is to make small edits to the resulting document, you can use LibreOffice with the following command: soffice --infilter="writer_pdf_import" --convert-to docx document.pdf This wil...

posted 2y ago by samcarter‭  ·  edited 2y ago by samcarter‭

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 1y ago by AdminBee‭  ·  edited 1y ago by Quasímodo‭

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

This sounds like a good idea. Installing an OS is a very different task to installing a piece of software on that OS and you can have experts in either of them with the two groups not necessarily o...

posted 1y ago by terdon‭

Answer
77%
+5 −0
Q&A How can I use SIGUSR1 or SIGUSR2 without risk of terminating the process?

If you are about to start the tool Start the tool from a process that already blocks or ignores SIGUSR1 and/or SIGUSR2 and let the tool inherit these settings. A blocked signal, when generated, w...

posted 1y ago by Kamil Maciorowski‭  ·  edited 1y ago by Kamil Maciorowski‭

Answer
77%
+5 −0
Q&A Adding Python 3.11 to `$PATH`

I built Python 3.11 from source (from GitHub python/cpython branch "3.11"). Here is what I did (after downloading the repo as ZIP) cd Downloads 7z x cpython-3.11.zip cd cpython-3.11 chmod +x c...

2 answers  ·  posted 2y ago by HGStyle‭  ·  last activity 1y ago by terdon‭

76%
+8 −1
Meta Should we merge with Power Users?

I vote against the merger. It's true that any LS question is likely to be on topic for PU, at least as I understand the scope of the latter, not being a participant in that community. However, I h...

posted 3y ago by r~~‭

Answer
75%
+4 −0
Q&A Make Less use a normal view instead of hexdump view

Less does not display data files normally, but if it were some sort of Xxd. $ bash --norc $ export LESS= $ file -i /var/log/lastlog /var/log/lastlog: application/octet-stream; charset=binary $...

1 answer  ·  posted 3y ago by Quasímodo‭  ·  edited 3y ago by Quasímodo‭

Question less
75%
+4 −0
Q&A What does capital T mean in the output of 'ls -l'?

The reason why you don't find this in man ls is that the GNU project (that developed Coreutils) usually provides the complete documentation of its components not in classic manual pages, but in so ...

posted 3y ago by Quasímodo‭

Answer
75%
+4 −0
Q&A Disable transient symbols for compose and dead keys in GTK programs

An article in the GTK blog explains the situation very well, but here is my go at it. In my keyboard layout, accents are handled as dead keys, so to insert "ë", first I type ¨ and then e. Nothing ...

1 answer  ·  posted 3y ago by Quasímodo‭  ·  last activity 2y ago by Quasímodo‭

75%
+4 −0
Q&A Disable transient symbols for compose and dead keys in GTK programs

This is originally Ibus' (an input method) behavior. It provides some facilities to extend the basic "input by typing". Examples: Ctrl+Shift+U for hex Unicode input. Ctrl+. for emoji selector. ...

posted 3y ago by Quasímodo‭  ·  edited 2y ago by Quasímodo‭

Answer
75%
+4 −0
Q&A How to edit file from less

You can edit the file you see in less by pressing v. From the man page: v Invokes an editor to edit the current file being viewed. The editor is taken from the envir...

posted 2y ago by celtschk‭

Answer
75%
+4 −0
Q&A Desktop Multiplexer for Linux? (GNU Screen for GUI apps)

GNU Screen and Tmux allow you to run command-line programs on a server, and 'disconnect' from them but let them keep running remotely. This is great if your primary computer is a laptop and it has...

1 answer  ·  posted 2y ago by re89j‭  ·  edited 2y ago by re89j‭

Question server gui desktop
75%
+4 −0
Q&A Desktop Multiplexer for Linux? (GNU Screen for GUI apps)

Have a look at Xpra. I only use it locally but it's intended to forward from remote hosts as well.

posted 2y ago by r~~‭

Answer
75%
+4 −0
Q&A When should you install windows dlls for wine with winetricks?

I noticed in winetricks that it can install windows dlls to the wine folder. It even gives an option to install almost all of them at once. When should someone install these instead of staying with...

2 answers  ·  posted 2y ago by true_blue‭  ·  last activity 1y ago by matthewsnyder‭

75%
+4 −0
Q&A Retrieve changes that closed a Debian bug

If a Debian bug number is referenced in the changelog of an uploaded package, it is automatically closed with a generic message: We believe that the bug you reported is fixed in the latest versi...

2 answers  ·  posted 2y ago by Quasímodo‭  ·  last activity 1y ago by tripleee‭

Question debian
75%
+4 −0
Q&A What does a minimal /etc/hosts need to contain?

Technically, you don't need an /etc/hosts file at all if you have some other form of name resolution available - i.e. DNS. In practice, what you have will work nicely, and could be cut down to jus...

posted 2y ago by dsr‭

Answer