7
votes
4answers
572 views
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 text, and replacement, be specified in a regex format?
1
vote
1answer
43 views
Making a perfect hash (all consecutive buckets full), gperf or alternatives?
Let's say I want to build a perfect hash table for looking up an array where the predefined keys are 12 Months, thus I would want
hash("January")==0
hash("December")==11
I run m …
0
votes
2answers
31 views
Is the iTextSharp DLL free to use and redistribute with my web application project?
Is the iTextSharp DLL free to use and redistribute with my web application project which i will be selling?
0
votes
0answers
23 views
Why doesn’t “find -print0” work in Cygwin under Vista?
I'm writing a simple shell script:
find datafiles/ -type f -print0 | xargs -0 md5sum > datafiles.md5
In Cygwin under Vista, it just sits there and nothing happens.
It works fine …
9
votes
4answers
152 views
Do you have to pay for GNU GPL software that is “for sale”?
I've seen some software (a Joomla component, to be exact) for sale on a web site. The web site says it is licensed under the GNU GPL2. However it also says you need to pay for ever …
1
vote
2answers
162 views
Include problems when using CMake with Gnu on Qt project
Hi,
I am starting a multiplatform (Win Xp, Linux) qt project. I want to use an out of source build so my directory structure is as followed:
project/
CMakeLists.txt (global C …
0
votes
1answer
35 views
Is the code generated by a gnu program is under gnu gpl too?
In my case, I am using gperf, I didn't fint it in the gnu gpl.
The C code generated by gperf, is very simple, and doesn't have any licensing header.
I guessed that a file without …
0
votes
4answers
4k views
GnuPG: “decryption failed: secret key not available” error from gpg on Windows
Environment: HP laptop with Windows XP SP2
I had created some encrypted files using GnuPG (gpg) for Windows. Yesterday, my hard disk failed so I had reimage the hard disk. I hav …
1
vote
1answer
32 views
How do you install gnu MAKE without compiler [closed]
I'm a little new in this area. I have a virtual machine centos5.1 that doesn't come with make or any compiler... basically stripped down. It doesn't come with any install packages …
3
votes
3answers
229 views
How do I diff utf-16 files with GNU diff?
GNU diff doesn't seem to be smart enough to detect and handle UTF-16 files, which surprises me. Am I missing an obvious command-line option? Is there a good alternative?
0
votes
2answers
118 views
Can we include another Makefile in a GNU Makefile by using the relative path?
I have a Makefile in:
project/all_app/myapp/src/Makefile
I also have a master Depend.mk in
project/Depend.mk
Can I include the main Makefile by using the relative path?
inc …
0
votes
2answers
129 views
How to make GNU Screen start a new window at the CURRENT working directory?
By default, when you create a new window in GNU Screen, it will start in the directory where screen is invoked. I want to start a new window in GNU Screen at the current working di …
2
votes
4answers
63 views
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 other.
Is the order of making b, c, d, e defined? It seems that generally they will be made in o …
1
vote
1answer
76 views
How can I create directories using subversion version numbers in gnu make?
Thanks to 'Beta' my solution:
RLS_DIRECTORY = $(shell svnversion -cn | sed 's/:/-/')
SVN_VERSION = $(shell svnversion -cn | sed -r 's/.+://')
RELEASE_NOTES = $(RLS_DIRECTORY:=/r …
0
votes
2answers
197 views
Where can I find an interrupt list for i486-linux-gnu instruction set?
I am developing a compiler for my senior project in school, and I am using AS (GNU Assembler) to assemble. All of my tests have been fairly successful, but no interrupt lists I hav …
