| bio | website | janosgyerik.com |
|---|---|---|
| location | Paris, France | |
| age | 34 | |
| visits | member for | 1 year, 1 month |
| seen | Apr 16 at 20:20 | |
| 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.
|
Sep 5 |
answered | awk extended pattern matching (embedding pattern matching in actions for already matched strings) |
|
Sep 4 |
comment |
Social website about shell commands Check out bashoneliners.com too! |
|
Sep 4 |
answered | encfs with expect access denied |
|
Sep 4 |
revised |
How to configure gpg to enter passphrase only once per session added 1328 characters in body |
|
Sep 3 |
answered | How to configure gpg to enter passphrase only once per session |
|
Aug 22 |
comment |
How to run time on multiple commands AND write the time output to file? Nice! I don't know in zsh, but in bash you can omit the outer brackets: time ( { echas z; echo 2 } 2>&3 ) 3>&2 2>timeoutput |
|
Aug 22 |
comment |
How to 'ls' current directory (which is under svn) files info (path)? If you need this for gource, the wiki of gource has a page that explains how to use it with subversion code.google.com/p/gource/wiki/SVN |
|
Aug 22 |
answered | Create symbolic links with wildcards |
|
Aug 22 |
revised |
How does “options” in shell scripting work? deleted 7 characters in body |
|
Aug 22 |
comment |
Create symbolic links with wildcards When you say "symbolic link named dir1 which link to /media/sd*/dir1" that sounds like a link pointing to multiple places which is not possible: a link can only point from one place to one place. Maybe you want all the files under /media/sda/dir1/* and /media/sdb/dir1/* to be linked to from /somedir/dir1/* ? It would seem to me that unionfs over the two disks would better serve your purpose then symlinks. |
|
Aug 22 |
revised |
How does “options” in shell scripting work? added 280 characters in body |
|
Aug 22 |
answered | How does “options” in shell scripting work? |
|
Aug 20 |
revised |
Compare two files: lines present in one, not in the other, by one column comparison added 212 characters in body |
|
Aug 20 |
comment |
Compare two files: lines present in one, not in the other, by one column comparison The original post had single spaces. Updating my answer in a sec. |
|
Aug 19 |
answered | Compare two files: lines present in one, not in the other, by one column comparison |
|
Aug 18 |
answered | Shell script fails: Syntax error: “(” unexpected |
|
Aug 18 |
revised |
Handling filenames that contains a hyphen, within a script added 1 characters in body |
|
Aug 18 |
revised |
ssh input from text file added 7 characters in body |
|
Aug 18 |
revised |
ssh input from text file added 326 characters in body |
|
Aug 18 |
comment |
ssh input from text file Your first answer is incorrect. The question was to pass input from abc.txt to ssh, and your answer is not doing that. |