Questions about tools for programming (compilers, IDE, etc.) For questions that involve programming, ask on Stack Overflow.
4
votes
1answer
417 views
Use the command bar in bash without I/O?
I really like the look of the output of bar
But that script is only used for Input/Output operations.
How can I use it as a replacement for sleep?
sleep 10
17
votes
5answers
1k views
Is automake and autoconf the standard way to compile code?
I sometimes compile apps from source and I've either been using:
./configure
make
sudo make install
But recently, I came across ./autogen.sh which generates the configure and make scripts for me ...
10
votes
2answers
4k views
Binary compatibility between Mac OS X and Linux
Brace yourselves, this question will likely appear naive and/or foolish, seeing as I am relatively new to the inner workings of unix like systems, and programming in general.
Ready? Ok! I will go ...
1
vote
0answers
56 views
Where does backtick and single quote come from when denoting commands e.g. `prog'? [duplicate]
When referring to commands in tutorials, man pages, and articles I see authors use the backtick and single quote in this way:
`./configure'
`make'
I believe I have seen gcc denote points of failure ...