Processing Semi-Structured Data in the Unix Shell
weaselhat.com
Processing Semi-Structured Data in the Unix Shell
1–5 of 5 posts
Re: Processing Semi-Structured Data in the Unix Shell
#2How does it distinguish between the Boolean value false and the string "false"?
Re: Processing Semi-Structured Data in the Unix Shell
#3How does it distinguish between the Boolean value false and the string "false"?
Good question. From the man page, looks like boolean values map to a file with contents either 'true' or 'false', while NULL values map to empty files.
Re: Processing Semi-Structured Data in the Unix Shell
#4How does it distinguish between the Boolean value false and the string "false"?
According to https://mgree.github.io/ffs/ffs.1.html, it tries to autodetect the type (so false will default to a boolean) but you can explicitly specify the type via extended attributes.
Re: Processing Semi-Structured Data in the Unix Shell
#5Very interesting though it’s just reinventing the database wheel