command 1
command 2
.
.
.
[ $? -eq '0' ] && echo "Job done!"
exit $?
MATLAB applications, tutorials, examples, tricks, resources,...and a little bit of everything I learned ...
Friday, June 8, 2018
Tuesday, June 5, 2018
AWK function to add a double quote to beginning of a line
function addQuote(input) {
return ("\"" input)
}
Subscribe to:
Posts (Atom)
my-alpine and docker-compose.yml
``` version: '1' services: man: build: . image: my-alpine:latest ``` Dockerfile: ``` FROM alpine:latest ENV PYTH...
-
It took me a while to figure out how to insert a space in Mathtype equations. This is especially useful when you write an equation with mult...
-
Recently I read post from Dr. Doug Hull's blog: http://blogs.mathworks.com/videos/2009/10/23/basics-volume-visualization-19-defining-s...
-
A couple of days ago, I plotted about twenty figures and was trying to set the markers with thicker edge. This would be very easy if it was ...