Last active
November 10, 2022 07:30
-
-
Save namgivu/f364bfa3ae190e1a6d6aae93f0321847 to your computer and use it in GitHub Desktop.
split by space in bash
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
: 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