Hello,
I would like to know how to disable output of libraries' messages that SBCL shows in time of including/require these. For example, after I (require :snmp), I get this message:
Now should use this
I would like to know how to disable output of libraries' messages that SBCL shows in time of including/require these. For example, after I (require :snmp), I get this message:
;;; ------------------------------------------------------------------------
;;; Portable Threads Interface 2.3
;;;
;;; Developed and supported by the GBBopen Project (http:/GBBopen.org/)
;;; (See http://GBBopen.org/downloads/LICENSE for license details.)
;;; ------------------------------------------------------------------------
I want to see output of my format functions ONLY. Output of my script is an input for another system. So, I don't want to use "grep" or something like this between.Now should use this
./my_script.cl | grep -v ";"
Thank you.