Jiffies: Difference between revisions

390 bytes added ,  22 November 2007
no edit summary
mNo edit summary
No edit summary
Line 4: Line 4:
  alias scalefactors "egrep ' ....  0 ......  .......  ..  .....    ....  ...  ......  ......' INTEGRATE.LP"
  alias scalefactors "egrep ' ....  0 ......  .......  ..  .....    ....  ...  ......  ......' INTEGRATE.LP"


FIXME: what are these lines in bash syntax?
In sh/bash/ksh/zsh syntax this would be:
 
alias sortlattices='egrep "^    ..        [aomhtc]" IDXREF.LP | sort -k3n | head -12'
alias scalefactors='egrep " ....  0 ......  .......  ..  .....    ....  ...  ......  ......" INTEGRATE.LP'
 
which could go into ~/.bashrc or something similar. There are many possibilities - best thing might be to search for the file that already contains alias commands:
 
grep -l "alias " ~/.[a-z]*


----
----