| bio | website | janosgyerik.com |
|---|---|---|
| location | Paris, France | |
| age | 34 | |
| visits | member for | 1 year, 1 month |
| seen | 14 hours ago | |
| stats | profile views | 34 |
I have a natural passion for programming, especially to create practical software for everyday use. Ultimately I want to put my skills to use in the field of green energy or health, as I am very concerned about these areas and I believe that having great software could help a lot and make a big difference.
|
Aug 17 |
revised |
ssh input from text file added 112 characters in body |
|
Aug 17 |
answered | ssh input from text file |
|
Aug 17 |
answered | rsync “skipping non-regular file” when cloning my Aperture library |
|
Aug 17 |
answered | Behavior of stdin/stdout in conjunction with subshells and cd command |
|
Aug 17 |
answered | Handling filenames that contains a hyphen, within a script |
|
Aug 16 |
comment |
rename files maching specific mtime value within directory Please pastebin your script! From the error message it looks like there is a syntax error in your script, trying to execute the command "5" which does not exist. The "5" could come from a variable, for example you get the same error message if you do something like this: a=5; $a hello there |
|
Aug 10 |
comment |
xterm doesn't switch directory when it is movedcd . will "sanitize" the situation in the first xterm. After this pwd will show the new path. |
|
Aug 8 |
comment |
Why is vim creating files with DOS line endings? I was able to reproduce your problem and I think I found the fix. I updated my answer, please try it! |
|
Aug 8 |
revised |
Why is vim creating files with DOS line endings? added 323 characters in body |
|
Aug 8 |
answered | How to send all output to a pager by default? |
|
Aug 8 |
answered | What's the most appropriate way of parsing values from this output? |
|
Aug 8 |
answered | rename files maching specific mtime value within directory |
|
Aug 3 |
answered | Why is vim creating files with DOS line endings? |
|
Jul 12 |
comment |
Are there naming conventions for variables in shell scripts? matter of taste? I personally like underscore separated, easier to read. |
|
Jun 29 |
awarded | Enthusiast |
|
Jun 20 |
awarded | Critic |
|
Jun 20 |
comment |
How to copy or move to folder in Nautilus 2.30.1 like in Windows Explorer? Sounds great! Didn't know, can't wait to try it. |
|
Jun 20 |
comment |
How to copy or move to folder in Nautilus 2.30.1 like in Windows Explorer? This is a good question, I've been looking for this too. In Windows Explorer it is nice that you can right-click-drag to the destination and then choose between copy/move. Sure you can click on copy/cut and then paste at the destination, but that's a lot of clicking. I see an answer below says there is middle-click-drag in nautilus for the same effect, can't wait to try it. |
|
Jun 20 |
comment |
How to remove error messages when searching recursively for a string? A bit dumb but this would do the trick: find -type f -print0 2>/dev/null | xargs -0 -n 10 grep -i searchstring 2>/dev/null | grep -i searchstring |
|
Jun 20 |
answered | Change string occurrences in file while respecting DOS new line sequences |