Search Results

2
votes

Variables that work everywhere

How can I have my variables to work in every program? You can't. Bash and cat are two separate programs. You set a bash variable, it doesn't mean that cat will …
1
vote

Extraordinarily Simple Shell Scripting Question: Making sticky changes?

When you sudo, you must understand that you are running another program, another shell in this case. It is a misunderstanding that pasting those commands on the terminal would be the same as puttin …
6
votes

How to remove files starting with double hyphen?

rm -- --testings.html …
2
votes

Warning with nftw

Linux, for some reason, still uses SUSv1 for this API, where nfsw() is still considered an extension. From the Linux manual page …
3
votes

Compress multiple files individually with Gzip

gzip */*.txt But the extension for each file will be .txt.gz, as gzip uses it to know the original filename. …
3
votes

Variables as commands in bash scripts

Simply don't put whole commands in variables. You'll get into a lot of trouble trying to recover quoted arguments. Also: Avoid using all-capitals variable names in scripts. Ea …
9
votes

Location of ini/config files in linux/unix?

You should adhere your application to the XDG Base Directory Specification. Most …
2
votes

How to execute the output of a command within the current shell?

The eval command exists for this very purpose. eval $( ls | sed... ) More from the …