Skip to content

Instantly share code, notes, and snippets.

@namgivu
Last active November 10, 2022 07:30
Show Gist options
  • Save namgivu/f364bfa3ae190e1a6d6aae93f0321847 to your computer and use it in GitHub Desktop.
Save namgivu/f364bfa3ae190e1a6d6aae93f0321847 to your computer and use it in GitHub Desktop.
split by space in bash
: YOUR_CMD | awk '{print $1" "$2}'
# ls 1st item
ls | awk '{print $1}' | head -n1
# sample on ls
ls -lah | awk '{print " chmod="$1 " chown="$3" "$4 " size="$5 }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment