qaz@lemmy.world to Memes@lemmy.ml · 2 years agoStandards shouldn't be behind a paywalllemmy.worldimagemessage-square44fedilinkarrow-up1389arrow-down125file-text
arrow-up1364arrow-down1imageStandards shouldn't be behind a paywalllemmy.worldqaz@lemmy.world to Memes@lemmy.ml · 2 years agomessage-square44fedilinkfile-text
ISO 8601 is paywalled RFC allows a space instead of a T (e.g. 2020-12-09 16:09:…) which is nicer to read.
minus-squarecalcopiritus@lemmy.worldlinkfedilinkarrow-up1·2 years agoBoth arguments are surrounded by ", which should be space-safe. At least in the shells I use, putting " makes spaces inside paths a non-issue.
minus-squarertxn@lemmy.worldlinkfedilinkEnglisharrow-up1·2 years agoFor the rsync command, yes. But this: for d in $(find . -type d); do echo "$d" done will process the space-separated parts of each path as separate items. I had to work around this issue just two days ago, it’s an obscure thing that not everyone will keep in mind.
Both arguments are surrounded by
", which should be space-safe.At least in the shells I use, putting
"makes spaces inside paths a non-issue.For the
rsynccommand, yes. But this:for d in $(find . -type d); do echo "$d" donewill process the space-separated parts of each path as separate items. I had to work around this issue just two days ago, it’s an obscure thing that not everyone will keep in mind.