Navigation
|
Here is a random collection of small script I wrote: Xilinx tools have some problems with the DISPLAY variable if it contains something that end in :0.0 this trims out the last part (.0). #trim end on DISPLAY var for ISE substr=`expr match "$DISPLAY" '.*\(\..\)'` export DISPLAY=${DISPLAY%$substr} |