| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 2 years, 3 months |
| seen | yesterday | |
| stats | profile views | 49 |
|
1d |
awarded | Enlightened |
|
1d |
awarded | Nice Answer |
|
Apr 13 |
answered | How can I set a bash alias that evaluates $() when run? |
|
Mar 1 |
comment |
Round/truncate digit in string in zsh (or with external tool) I don't really get what you want to do with .3333. Just delete all decimal digits after the second? |
|
Mar 1 |
answered | Round/truncate digit in string in zsh (or with external tool) |
|
Feb 18 |
awarded | Yearling |
|
Jan 23 |
awarded | Enlightened |
|
Jan 23 |
awarded | Nice Answer |
|
Dec 10 |
comment |
grep output of expect script grep "error"... and then what? Note that you can expect the string "error" in your expect script, and exit with an error code if matched. |
|
Nov 26 |
answered | Why doesn't Bash accept `&>&3`, i.e. redirecting stdout and stderr to file descriptor 3? |
|
Nov 21 |
comment |
How to screen'ize already running session? Look here (and here). |
|
Nov 18 |
comment |
mkisofs can't find file @elyashiv You are creating an image of the bin directory: mkisofs ... bin. Your boot image path is relative to that directory. If it is right there in bin, you just say -b boot.bin. Do you get it? |
|
Nov 18 |
answered | mkisofs can't find file |
|
Nov 16 |
revised |
How to move files with same name and concatenate format |
|
Nov 16 |
answered | Create and set custom keyboard layout |
|
Nov 16 |
comment |
How to traverse a file and extract words using their index? @ChrisDown Who knew? :) Thanks. @AleksandarHadjikan That's strange, I don't know what to make of it. Better use the awk version. As a last resort, try replacing [ \t]\+ with [ \t\xA0]\+. |
|
Nov 16 |
revised |
How to traverse a file and extract words using their index? apparently read has an option for this |
|
Nov 16 |
comment |
How to traverse a file and extract words using their index? @AleksandarHadjikan The example does that now... Maybe you can post file and your modifications to the command, and we'll try to figure out why it fails. |
|
Nov 16 |
comment |
How to traverse a file and extract words using their index? @ChrisDown Yes, apparently read is the culprit. Fixed. |
|
Nov 16 |
revised |
How to traverse a file and extract words using their index? fixed backslash breakage, example matches user's case |