Last active
March 10, 2018 21:19
This file contains 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
~# foo='one | |
> two | |
> three' | |
~# hd <<< $foo | |
00000000 6f 6e 65 20 74 77 6f 20 74 68 72 65 65 0a |one two three.| | |
0000000e | |
~# hd <<< "$foo" | |
00000000 6f 6e 65 0a 74 77 6f 0a 74 68 72 65 65 0a |one.two.three.| | |
0000000e | |
~# bash --version | |
GNU bash, version 4.3.48(1)-release (x86_64-pc-linux-gnu) | |
Copyright (C) 2013 Free Software Foundation, Inc. | |
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> | |
This is free software; you are free to change and redistribute it. | |
There is NO WARRANTY, to the extent permitted by law. | |
~# echo $BASH_VERSION | |
4.3.48(1)-release | |
~# declare -p BASH_VERSINFO | |
declare -ar BASH_VERSINFO='([0]="4" [1]="3" [2]="48" [3]="1" [4]="release" [5]="x86_64-pc-linux-gnu")' |
This file contains 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
~# foo='one | |
> two | |
> three' | |
~# hd <<< $foo | |
00000000 6f 6e 65 0a 74 77 6f 0a 74 68 72 65 65 0a |one.two.three.| | |
0000000e | |
~# hd <<< "$foo" | |
00000000 6f 6e 65 0a 74 77 6f 0a 74 68 72 65 65 0a |one.two.three.| | |
0000000e | |
~# bash --version | |
GNU bash, version 4.4.12(1)-release (x86_64-pc-linux-gnu) | |
Copyright (C) 2016 Free Software Foundation, Inc. | |
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> | |
This is free software; you are free to change and redistribute it. | |
There is NO WARRANTY, to the extent permitted by law. | |
~# echo $BASH_VERSION | |
4.4.12(1)-release | |
~# declare -p BASH_VERSINFO | |
declare -ar BASH_VERSINFO=([0]="4" [1]="4" [2]="12" [3]="1" [4]="release" [5]="x86_64-pc-linux-gnu") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment