Search Results

3
votes

Why do various Linux distros use different package managers?

Like most things in the UNIX world where there are duplications of behaviour, it's a combination of many things, but mostly history, politics/religion, and the desire to build a better mousetrap / …
3
votes

Does this code deletes duplicates?

Modifying the SQL to use the DISTINCT directive e.g. SELECT DISTINCT userid,displayname FROM Users will ensure that only unique combinations of userid a …
4
votes

BASH: Strip new-line character from string (read line)

I always like perl -ne 'chomp and print' , for trimming newlines. Nice and easy to remember. e.g. ls -l | perl -ne 'chomp and print' However …