Search Results

1
vote

How to escape extended pathname expansion patterns in quoted expressions?

$ bash -O extglob -c 'echo !(file2)' file1 file3 …
2
votes

detaching a process from terminal, entirely

If you are using bash, try "disown". Otherwise you can try "at now". …
8
votes

BASH: Copy named files recursively, preserving folder structure

One way: tar cf - <files> | (cd /dest; tar xf -) …
3
votes

Set screen-title from shellscript

set_screen_title () { echo -ne "\ek$1\e\\" } …