Skip to main content
5 votes
Accepted

Is it common to include a specific build of a library/ tool for production level project?

Is it common to include a specific build of a library/ tool for production level project? I would say it is at least not totally uncommon, and it depends on how you define "production level". But if ...
Doc Brown's user avatar
  • 221k
4 votes

commonly used practices for deploying package primarily composed of bash scripts

Like what are the best practices to deploy software with many bash scripts? Given you refer to /usr/local/lib and /usr/local/bin, I'm assuming you're on some kind of Unix-ish machine - there, the ...
Philip Kendall's user avatar
3 votes

Ken thompson's compiler hack

No. The source code is not usable since it cannot be executed, only machine code can be executed. And to transform it into a binary you need a compiler. But you have no assurance that the compiler you ...
Kilian Foth's user avatar
3 votes
Accepted

Using sed/awk to bulk generate static HTML pages off of a template

Yes, you can do that. No, it is not a good idea. This is roughly how some websites worked in the 90s. That these approaches are problematic has nothing to do with their age, and everything to do with ...
amon's user avatar
  • 136k
2 votes

commonly used practices for deploying package primarily composed of bash scripts

Traditionally (the slackware way) the userland scripts would exist in /usr/local/bin and /usr/local/sbin along with any binaries. By convention, it's reserved for local administrator/software, so you'...
haxbits's user avatar
  • 81
1 vote
Accepted

Local Path on Linux

According to this answer: https://unix.stackexchange.com/questions/316765/which-distributions-have-home-local-bin-in-path There is a: ~/.local/bin/ Executables that shall appear in the user's $PATH ...
Helena's user avatar
  • 827
1 vote

Why terminals only allow character-cell displays

It worth noting that the X Window system, which is still used as GUI for linux, was just designed as solution for letting programs show graphics remotely. So it is basically the graphical terminal you ...
max630's user avatar
  • 2,605
1 vote

What is the exact ingenuity of Unix pipe

The genius of Pipes is that it combines three important ideas. First, pipes are a practical implementation of 'co-routines', a term coined by Conway in 1958 which was promising but saw little ...
EvertW's user avatar
  • 121

Only top scored, non community-wiki answers of a minimum length are eligible