Top "Gnu" questions

This tag is for programming questions related to software and tools provided by the GNU ("GNU's Not Unix") project.

How to install GNU gettext on windows 7?

I need to install version 0.15 or higher of GNU's gettext so that I can use some i18n feateres with …

windows gnu gettext django-i18n
GNU parallel not working at all

I have been trying to use GNU parallel for some time, but I have never been able to get it …

parallel-processing gnu xargs gnu-parallel
What GNU/Linux command-line tool would I use for performing a search and replace on a file?

What GNU/Linux command-line tool would I use for performing a search and replace on a file? Can the search …

regex linux sed gnu
How to enable ccache on Linux

There is very little documentation on enabling ccache on GNU/Linux. Here is a response from launchpad.net: At the …

linux gcc gnu ccache
How does grep work?

I am trying to understand how grep works. When I say grep "hello" *.*, does grep get 2 arguments — (1) string to be …

c shell unix grep gnu
In what order prerequisites will be made by the GNU make?

Assuming we have the rule: a: b c d e and b, c, d and e are independent of each …

dependencies makefile gnu
_GNU_SOURCE and __USE_GNU

I want to use CPU_SET, which is a glibc linux-specific macro that should be defined in sched.h The …

c++ c linux gnu glibc
What delimiters can you use in sed?

We normally see people complaining about the unknown option to s' error in sed when they want to use a …

sed gnu delimiter
clarification for RAND_MAX and rand() in c stdlib.h

why does the following c code produce real numbers only ranging between 0 and 1(eg: 0.840188,0.394383...etc) for double a,b when …

c gnu ansi ansi-c
Use GNU find to show only the leaf directories

I'm trying to use GNU find to find only the directories that contain no other directories, but may or may …

bash shell find gnu