Search Results

2
votes

What’s the best practice for changing working directories inside scripts?

I'll second Schwern's and Hugo's comments above. Note Schwern's caution about returning to the original directory in the event of an unexpected exit. He provided appropriate Perl code to handle t …
0
votes

Maximum number of inodes in a directory?

As noted by Rob Adams, ls is sorting the files before displaying them. Note that if you are using NFS, the NFS server will be sorting the directory before sending it, and 2 million entries may wel …
3
votes

What are replacement and new practices from sh to Bash?

For scripting, unless there's a specific reason to do otherwise, I limit myself to the Bourne constructs. They are maximally portable, and should run on systems that use bash, ksh, or even sh as t …