Skip to content
Snippets Groups Projects
Commit 470262e2 authored by Thomas Moulard's avatar Thomas Moulard
Browse files

Use mktemp to create temporary file in sot-shell-plugin.sh.

parent df072e55
No related branches found
No related tags found
No related merge requests found
#! /bin/sh
tmp=`mktemp`
echo "-- Launching dynamic-graph C shell with default plugins"
echo "loadPlugin ${CMAKE_INSTALL_PREFIX}/lib/plugin/shell-functions.so" > /tmp/default_script
echo "loadPlugin ${CMAKE_INSTALL_PREFIX}/lib/plugin/shell-procedure.so" >> /tmp/default_script
${CMAKE_INSTALL_PREFIX}/bin/sot-shell /tmp/default_script
echo "loadPlugin ${CMAKE_INSTALL_PREFIX}/lib/plugin/shell-functions.so" > $tmp
echo "loadPlugin ${CMAKE_INSTALL_PREFIX}/lib/plugin/shell-procedure.so" >> $tmp
${CMAKE_INSTALL_PREFIX}/bin/sot-shell $tmp
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment