Testing Syntax Highlighting
echo testing 1 2 3
echo testing 1 2 3
I've seen examples of how to accomplish this in Windows. The syntax is slightly different on MacOS. I also find the most straightforward way to do this is a little bit scary for those unfamiliar with Linux partitions. This should work on any LVM based *nix VM; I just happened
This is XenSoft, a brand new site by John Westlund that's just getting started. Things will be up and running here shortly, but you can subscribe in the meantime if you'd like to stay up to date and receive emails when new content is published!
Very easy and usually accomplished with a loop: $ array=(red green blue) $ for I in ${array[@]}; do echo $I; done red green blue But we can do better!: $ printf '%s\n' "${array[@]}" or: $ ( IFS=$'\n'; echo "${array[*]}" ) Note the switch to "${array[*]}" from "${array[@]}" (the "quoting" is important!
Out of the box git commit logs are a bit drab.
commit f93f639563850136a11c4cbc39a119c6905feaf2
Author: John Westlund