shell script OpenBSD now enforcing no invalid NUL characters in shell scripts By undeadly.org Published On :: Tue, 24 Sep 2024 10:57:32 GMT Our favorite operating system is now changing the default shell (ksh) to enforce not allowing invalid NUL characters in input that will be parsed as parts of the script. The commit message reads, List: openbsd-cvs Subject: CVS: cvs.openbsd.org: src From: Theo de Raadt <deraadt () cvs ! openbsd ! org> Date: 2024-09-23 21:18:33 CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2024/09/23 15:18:33 Modified files: bin/ksh : shf.c Log message: If during parsing lines in the script, ksh finds a NUL byte on the line, it should abort ("syntax error: NUL byte unexpected"). There appears to be one piece of software which is misinterpreting guidance of this, and trying to depend upon embedded NUL. During research, every shell we tested has one or more cases where a NUL byte in the input or inside variable contents will create divergent behaviour from other shells. (ie. gets converted to a space, is silently skipped, or aborts script parsing or later execution). All the shells are written in C, and majority of them use C strings for everything, which means they cannot embed a NUL, so this is not surprising. It is quite unbelievable there are people trying to rewrite history on a lark, and expecting the world to follow alone. Read more… Full Article
shell script How to create simple Mac apps from shell scripts By mathiasbynens.be Published On :: Fri, 12 Nov 2010 12:51:46 +0100 Thomas Aylott has come up with a clever script that allows you to easily create Mac apps from shell scripts. Here’s how it works. Full Article
shell script Shell Script rc By feedproxy.google.com Published On :: Wed, 02 Jul 2014 13:36:49 GMT Dear I want to automate the synthesis of 100 IP cores so i wrote a small script (see below), but i am stuck on <rc> In easy way, rc seems does not like be called in a shallscript To make it works i need get in each folder, call the rc and then run <souce synth.tcl>Please anyone know how can i by pass the problem ?Thank you so much foreach i(*.C) cd $i rc source synth.tcl cd ..end Full Article