Hi what is the meaning of IFS with single quote in next line? -


hi ifs=' ' space,

ifs=' ' 

it means specifying ifs use newline splitting. similar doing:

ifs=$'\n' 

the difference being way posix compliant.

my sources answer here , here

you may find different methods preferred depending on shell implementation using (i think that's right term?)


note: answer based purely on last 10 minutes of research, have no prior experience or knowledge this.


Comments

Popular posts from this blog

javascript - Using jquery append to add option values into a select element not working -

Android soft keyboard reverts to default keyboard on orientation change -

Rendering JButton to get the JCheckBox behavior in a JTable by using images does not update my table -