Skip to content

Instantly share code, notes, and snippets.

/-

Created June 1, 2017 21:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/4d2d7261588a69fc7779511d3e50e3d6 to your computer and use it in GitHub Desktop.
Save anonymous/4d2d7261588a69fc7779511d3e50e3d6 to your computer and use it in GitHub Desktop.
user@darkstar ~ $ touch "John foo bar bee"
user@darkstar ~ $ ls -l John\ foo\ bar\ bee
-rw-r--r-- 1 user user 0 Jun 1 17:23 John foo bar bee
user@darkstar ~ $ basename "John foo bar bee"
John foo bar bee
user@darkstar ~ $ basename "John foo bar bee" | cut -f 1 -d " "
John
user@darkstar ~ $
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment