cm0002@piefed.world to Programmer Humor@programming.devEnglish · 1 day agoI_fucking_hate_them_nowmedia.piefed.worldimagemessage-square119fedilinkarrow-up1892arrow-down17
arrow-up1885arrow-down1imageI_fucking_hate_them_nowmedia.piefed.worldcm0002@piefed.world to Programmer Humor@programming.devEnglish · 1 day agomessage-square119fedilink
minus-squareRouthinator@startrek.websitelinkfedilinkEnglisharrow-up6·edit-210 hours ago'I don\'t know what you mean, I\‘ve never encountered any annoyances.’
minus-squareGamma@programming.devlinkfedilinkEnglisharrow-up3·6 hours agoSingle quotes don’t allow any escaping in shell, you need 'I don'\''t know what you mean, I'\''ve never encountered any annoyances' Or, in Zsh with setopt rcquotes: 'I don''t know what you mean, I''ve never encountered any annoyances'
minus-squareRouthinator@startrek.websitelinkfedilinkEnglisharrow-up3·4 hours agoOh right, good catch. That’s me shell scripting while in a meeting. 🫠
'I don\'t know what you mean, I\‘ve never encountered any annoyances.’
Single quotes don’t allow any escaping in shell, you need
'I don'\''t know what you mean, I'\''ve never encountered any annoyances'
Or, in Zsh with
setopt rcquotes
:'I don''t know what you mean, I''ve never encountered any annoyances'
Oh right, good catch. That’s me shell scripting while in a meeting. 🫠