#!/bin/bash
# you can use this script to disable full autostarting processing for new FIDs into the application iNMR
iKEY=iLuaFolder
LuaFolder=`defaults read net.inmr.inmr $iKEY`
FullPath=$LuaFolder/autoexec.lua
if [ "$(ls $FullPath)" = "$FullPath" ]; then
	mv $FullPath $LuaFolder/auto-exec.lua
fi
