-
Notifications
You must be signed in to change notification settings - Fork 743
Closed
Description
The docs for unix set can be found here
set -f prevents things from globbing. This would be a useful addition if #343 is resolved (and doesn't really make sense to resolve before then), since it could be argued this makes code much safer (at the cost of convenience).
set('-f');
touch('*.txt'); // this creates a literal file named *.txt