Xensoft
  • Home
  • Command Line
  • Best Practices
  • Scripting
  • Books
  • Riddles
Subscribe
Off Topic

Tracy, CA: Home of the Millennium Falcons

John Westlund

Dec 7, 2013 • 1 min read

Millenium High School is in Tracy, CA and their mascot is the Falcon. They are the Millenium Falcons.
Millennium Falcon

Sign up for more like this.

Enter your email
Subscribe

Testing Syntax Highlighting

echo testing 1 2 3

John Westlund Apr 2, 2022 • 1 min read
Coming soon

Coming soon

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!

John Westlund Mar 20, 2022 • 1 min read

Print BASH Array Elements on Separate Lines

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[*]}"

John Westlund Dec 16, 2016 • 1 min read
Xensoft © 2022
  • Sign up
Powered by Ghost