6
votes
How do you determine what bash ls colours mean?
The colors are defined by the $LS_COLORS environment variable. Depending on your distro, it is generated automatically when the shell starts, using ~/.dircolors or / …
2
votes
Shell script - Two for loops and changing extension of file
Many things are wrong.
Don't use dir or ls in for loops.
Why eval? What you expected to get?
You use $line without defining it.
Don't use bc to do math, sin …
3
votes
Why does this bash script require me to press enter to continue?
I already answered in the other question. It was ffmpeg asking you to overwrite the output file. Giving unique names (with $i in the filename) and passing -y to ffmpeg solves the problem.
…
3
votes
3
votes
UDP-Broadcast on all interfaces
First of all, you should consider broadcast obsolete, specially INADDR_BROADCAST (255.255.255.255). Your question highlights exactly one of the reasons that broadcast is unsuitable. It …
0
votes
bash stacktrace
~$ help caller
caller: caller [EXPR]
Returns the context of the current subroutine call.
Without EXPR, returns "$line $filename". With EXPR,
returns "$line $subroutine $filena …
1
vote
Extraordinarily Simple Shell Scripting Question: Making sticky changes?
When you sudo, you must understand that you are running another program, another shell in this case. It is a misunderstanding that pasting those commands on the terminal would be the same as puttin …
1
vote
How does sched_setaffinity() work?
Where, in the assembly code, are we specifying which core performs that operation?
There is no assembly involved here. Every task (thread) is assigned to a sing …
4
votes
Take a screenshot via a python script. [Linux]
This one works on X11, and perhaps on Windows too (someone, please check). Needs PyQt4:
import s …
2
votes
Why is my “cat” function with system calls slower compared to Linux’s “cat”?
Without comparing the source codes, it is difficult to say. If you are comparing your cat with GNU cat, remember that you are comparing a code that is a few hours/days old with a code that evolved …
2
votes
Warning with nftw
Linux, for some reason, still uses SUSv1 for this API, where nfsw() is still considered an extension.
From the Linux manual page …
5
votes
How do I run a program with a different working directory from current, from Linux shell?
Similar to David Schmitt's answer, plus Josh's …
3
votes
Compress multiple files individually with Gzip
gzip */*.txt
But the extension for each file will be .txt.gz, as gzip uses it to know the original filename.
…
4
votes
What is the Linux Equivalent of Kernel32.dll?
msvcrt.dll is not really comparable to libc.so.6, since the first is an specific DLL for VC++ (msvcrt -> MicroSoft Visual C++ RunTime).
System calls (open, close, read, write, etc...) are a …
1
vote
Getting terminal width in C?
#include <stdio.h>
#include <stdlib.h>
#include <termcap.h>
#include <error.h>
static char termbuf[2048];
int main(void)
{
char *termtype = getenv("TERM");
…
