Jiffies: Difference between revisions
| mNo edit summary | No edit summary | ||
| Line 4: | Line 4: | ||
|   alias scalefactors "egrep ' ....   0 ......  .......   ..  .....    ....   ...  ......  ......' INTEGRATE.LP" |   alias scalefactors "egrep ' ....   0 ......  .......   ..  .....    ....   ...  ......  ......' INTEGRATE.LP" | ||
| 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]* | |||
| ---- | ---- | ||