Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

ipescript(1) [debian man page]

IPESCRIPT(1)						      General Commands Manual						      IPESCRIPT(1)

NAME
ipescript - Run an Ipe script (written in Lua) SYNOPSIS
ipescript script { arguments } DESCRIPTION
ipescript runs an Ipe script written in Lua. The Ipe bindings are automatically available in the script. Ipescript looks for the script in any of the script directories. The script argument should not contain the .lua extension. ENVIRONMENT VARIABLES
ipescript respects the following environment variables: IPELATEXDIR the directory where ipetoipe runs Pdflatex. IPESCRIPTS a list of directories where Ipescript will look for scripts. When this variable is not set, Ipe searches first the current directory, then ~/.ipe/scripts, and finally the system-wide Ipe script directory. When this variable is set, it should contain a list of directories, separated by semicolons. A single under- score is replaced by the system-wide Ipe script directory. IPEDEBUG set this to 1 for debugging output from ipescript. AUTHOR
Otfried Cheong REPORTING BUGS
Please report bugs using Ipe bugzilla at http://ipe7.sourceforge.net/bugzilla.html SEE ALSO
Ipe is documented fully in The Ipe Manual, which is available online at http://ipe7.sourceforge.net/manual/manual.html . August 28, 2011 IPESCRIPT(1)

Check Out this Related Man Page

IPE(1)							      General Commands Manual							    IPE(1)

NAME
ipe - drawing editor for creating figures in PDF or EPS formats SYNOPSIS
ipe [ Qt options ] [ -sheet stylesheet ] filename DESCRIPTION
Ipe is a program that supports making small figures for inclusion into LaTeX documents as well as making multi-page PDF presentations. This manual page only documents the command line options and environment variables. Full documentation for using Ipe can be found in HTML and PDF format; see below. -sheet stylesheet add the Ipe style sheet in the indicated file to all newly created Ipe documents. This option can be used more than once. ENVIRONMENT VARIABLES
Ipe respects the following environment variables: IPELATEXDIR the directory where Ipe runs Pdflatex. IPEFONTMAP the complete path of the font map, describing where Ipe can find the 14 standard PDF fonts. IPEANCIENTPDFTEX set this variable to use Pdftex versions older than 1.40. IPELETPATH a list of directories, separated by semicolons, containing ipelets. You can write a single underscore for the system-wide ipelet directory. If this variable is not set, the default consists of the system-wide ipelet directory, plus ~/.ipe/ipelets on Unix, plus ~/Library/Ipe/Ipelets on OS X. EDITOR external editor to use for editing text objects. IPESTYLES a list of directories, separated by semicolons, where Ipe looks for stylesheets. You can write a single underscore for the system-wide stylesheet directory. If this variable is not set, the default consists of the system-wide stylesheet directory, plus ~/.ipe/styles on Unix, plus ~/Library/Ipe/Styles on OS X. IPEDEBUG set this to 1 for debugging output. IPEDOCDIR the directory containing the Ipe documentation. IPEICONDIR directory containing icons for the Ipe user interface. IPELUAPATH path for searching for Ipe Lua code. AUTHOR
Otfried Cheong REPORTING BUGS
Please report bugs using Ipe bugzilla at http://ipe7.sourceforge.net/bugzilla.html SEE ALSO
Ipe is documented fully in The Ipe Manual, which is available online at http://ipe7.sourceforge.net/manual/manual.html . September 1, 2011 IPE(1)
Man Page

15 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Using ls in a script for another directory

I am trying to recover a listing of moved error files using the ls command. This is required to check that files that are deemed error are renamed and moved to the apropriate directory. Problem is, I am not able to get the ls /file path/*.fixed to work. I have tried using a variable i.e. ls... (17 Replies)
Discussion started by: jagannatha
17 Replies

2. Shell Programming and Scripting

Assign script parameters to variables

Hi, I have a bash script that accepts some parameters as input, like: sh script.sh first second third ..... I want to save these parameters as different variables, something like: VAR1=first VAR2=second etc I tried this, but apparently it didn't worked....... (16 Replies)
Discussion started by: giorgos193
16 Replies

3. Shell Programming and Scripting

script to monitor directory

What is the best way for a script to run to monitor a directory for the presence of files and then perform a function afterwords? I was hoping to have it continually run and sleep until it detects that files are present in the directory, then break out of the loop and go on to the next step. ... (17 Replies)
Discussion started by: nulinux
17 Replies

4. Shell Programming and Scripting

How can I get the directory of my executing script?

hi, I tried whence $0, but that just gives me the filename relative to where I am executing the script from. I need to get the full pathname. thanks (19 Replies)
Discussion started by: JamesByars
19 Replies

5. Shell Programming and Scripting

Search and Replace with Confirmation

Hi, I have created a script which searches and replace the searched text from any file in directory. I want to add a functionality where before replacing the text, script shows the line with the searched text and ask for user confirmation before replacing the text. Can this be done using SED... (18 Replies)
Discussion started by: Abhinav Tyagi
18 Replies

6. Shell Programming and Scripting

find -exec directories with spaces

All, I have a cleanup script that removes directories and all contents underneath, but I am having issues with directories with spaces. This is the command I am currently running, how can I get it to work with directories with spaces? find /path -mindepth 3 -type d -exec rm -rf {} \; (29 Replies)
Discussion started by: markdjones82
29 Replies

7. Shell Programming and Scripting

Save output in a variable

Hi, I have a 3rd party tool on Solaris 8. I am running it thorugh my script but I am not able to capture its output into a variable. Like, I tried, but did not work. output=`/usr/bin/myTool` echo $output Also, I tried saving in a file but when I run, output is always shown on the... (19 Replies)
Discussion started by: angshuman_ag
19 Replies

8. Shell Programming and Scripting

script

(24 Replies)
Discussion started by: rocky1954
24 Replies

9. Shell Programming and Scripting

BDF Panic script...

I have another script which I found also on the net. I keep getting an error:confused:: Here is the script for it: {/usr/bin/bdf -l |awk '$0 !~ /^F/' |awk '{print $5"\t" $6}'| sed 's/'%'//' >/tmp/b dflist} panic () {while read percent dir; do if ] then ... (16 Replies)
Discussion started by: zixzix01
16 Replies

10. Shell Programming and Scripting

temporary file to file then move to directory

Ok in my bash script i have 5 options to create a simple html script. I need to create a temporary file and whatever the user types will be stored in that file using html codes. And then I have another option in which that temporary file will be moved to the public_html directory in which the user... (19 Replies)
Discussion started by: gangsta
19 Replies

11. Shell Programming and Scripting

My first script

I'm trying to get this script to work i'm close but there's some wrong any help is welcome. I have a bunch of text files in a directory which are a list of numbers i'm trying to get this script to look for a random number in the list and tell me in which text file that number is. ---------- Post... (24 Replies)
Discussion started by: shadow.wodahs
24 Replies

12. UNIX for Dummies Questions & Answers

Bash script

I want a script that change to a directory (the first param) and display all the files inside it Why this really simple script don't change directory ? #!/usr/bin/env bash cd $1 dates=`ls` echo $dates (25 Replies)
Discussion started by: mirko86
25 Replies

13. Shell Programming and Scripting

Delete big directory issue

Hello folks, I am deleting a directory with script it is taking 11Hour and also increase the IO on server. I am using below command, inside date directory there are hour directories, which i am deleting after archiving. Archiving is not taking long time, only "rm -rf" is taking alot of time with... (21 Replies)
Discussion started by: learnbash
21 Replies

14. Shell Programming and Scripting

Deleting Repeating lines from a txt file via script

Hi, I'm having trouble in achieving the following scenario. There is a txt file with thousands of lines and few lines are repeated, which needs to be removed using a script. File.txt 20140522121432,0,12,ram Loc=India From=ram@xxx.com, To=ravi@yyy.com,, 1 2 3 4 . . 30... (18 Replies)
Discussion started by: Gautham
18 Replies

15. Shell Programming and Scripting

Improve script and get new output file

Gents, Using the following script, I got the changes as desired in the output file called (spread_2611.x01.new). Complete file as input (spread_2611.x01). Can you please have a look to my script and improve it please. :b: Also I would like to I get a additional selecting only the records... (21 Replies)
Discussion started by: jiam912
21 Replies