Open
Conversation
Open
|
POSIX only requires file descriptors 0-9 to be available (cf. https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_07). Also, Maybe using arithmetic expansions (e.g. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Hello,
I'm using fds 98/99 to be fairly high and not disturb scripts using my library.
When doing tests with:
It gave me errors:
I fixed it with a wildcard after the number to avoid ugly repetition of
[0-9]|[0-9][0-9]| ...as we can have more than 20 numbers (max_files is anunsigned longinstruct files_stat_structof filelinux/include/uapi/linux/fs.h)Maybe you'll want to use an helper like "isInt" which is something like
[[ -n "${1//[0-9]/}" ]]but I'm not sure on how you'll want it used.Just to know, is a new release planned soon ?
Thanks a lot !
Adrien