hi i searched information about this and didn't find any that solve my problem.
I connected remotely to server of my College using putty , now i'm trying to create a dynamic library , using the command to set the path:
export LD_LIBRARY_PATH=/home/fred/lib:$LD_LIBRARY_PATH
it says: "export: command not found"
i compiled my code using this:
gcc -I../include -L../lib -o printer printer.c -llprprint
(it alowed me to compile code library file .so and include file that i have done, all work fine)
so the problem is i want to run ./myProgram it says cant find my library or its not exists.
i wonder if the prolem is in the path? how i make export works? please help