Advertisement
algorithmuscanorj

"pari" command def. for Linux/Unix

Jan 7th, 2013
336
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.36 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. # if [ $# == 1 ]; then
  4.   export savepath=`pwd`;
  5.   cd $PARIGPhome;
  6.   clear;
  7.   xterm -fg black -bg orange -T "Le PARI de Pascal :: $1" -e "gp -s 826781205 -q $1";
  8.   cd $savepath;
  9. #fi
  10.  
  11. # Custom system invokation for working with PARI/GP. (Allocates 77% of my RAM)
  12. # Author: Remy Cano, Jan 7th 2012.
  13. # Devised for be saved-as or linked-to: /bin/pari
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement