Re: [dev] [sbase] Adding tar

2013-07-07 Thread Markus Wichmann
On Sat, Jul 06, 2013 at 10:53:01PM -0500, Galos, David wrote: > > I also see it a lot in scripts, along with using full options instead > > of short--perhaps to be more verbose? So, for compatibility, perhaps it > > is best to allow both. > If you mean GNU --long-options, then never in a million ye

Re: [dev] [sbase] Adding tar

2013-07-07 Thread Truls Becken
On 2013-07-07, at 05:53, David Galos wrote: > If sbase gains programs to do compression, and the code is nicely librarized, > I will consider thinking about considering adding letting tar do that. Why not call out to the compression program? Pipes are not patented by shells. This decouples things

Re: [dev] [sbase] Adding tar

2013-07-07 Thread Thorsten Glaser
Markus Wichmann dixit: >One way I also find myself using quite often: > >tar xfC filename.tar.gz directory This one is, I believe, not portable: behind f the filename must be immediately. (Also you forgot z.) An often-seen case of this unportablity is people using 'tar xfz foo.tgz' instead of xzf

Re: [dev] [sbase] Adding tar

2013-07-07 Thread Calvin Morrison
Why don't we just use popen? On Jul 7, 2013 3:24 AM, "Markus Wichmann" wrote: > On Sat, Jul 06, 2013 at 10:53:01PM -0500, Galos, David wrote: > > > I also see it a lot in scripts, along with using full options instead > > > of short--perhaps to be more verbose? So, for compatibility, perhaps it >

Re: [dev] [sbase] Adding tar

2013-07-07 Thread Strake
On 06/07/2013, Galos, David wrote: > The attached patch shows my current work on adapting sltar > to sbase. It is functional, but, there are still open questions > regarding tar. The big deal is the argument parsing: I would > like to use the ARG macros in tar, but I'm not sure how that > fits wi

Re: [dev] [sbase] [patch] Add sha1sum

2013-07-07 Thread Strake
On 04/07/2013, sin wrote: > On Thu, Jul 04, 2013 at 12:34:14PM +, Robert Ransom wrote: >> sha1sum.c is very similar to md5sum.c; ideally, more of the common >> code between those programs would be in a library routine. > > Yeah they are very similar, however, the code is very simple and > ther

[dev] [sbase] shell scripts

2013-07-07 Thread Strake
I see some utilities in sbase what could easily be shorter as shell/awk scripts. Some utilities I sent in earlier, e.g. cut, were turned down for this reason. For examples, head: #!/bin/sh n=10; while getopts 'n:' o; do case $o in (n) n="$OPTARG";; esac done

Re: [dev] [sbase] Adding tar

2013-07-07 Thread Thorsten Glaser
Strake dixit: >miss them. Archiver/compressor integration loses, for it needs a flag >and code for each compression format. I’d not use those anyway. I normally compress with: find foo -type f | sort | cpio -oC512 -Hustar | gzip -n9 >foo.tgz Failing that, this one’s almost the same: tar -b 1 -

Re: [dev] [sbase] shell scripts

2013-07-07 Thread Thorsten Glaser
Strake dixit: >shift $(dc -e "$OPTIND 1 - p"); *what*?! shift $(($OPTIND-1)) is POSIX. bye, //mirabilos -- FWIW, I'm quite impressed with mksh interactively. I thought it was much *much* more bare bones. But it turns out it beats the living hell out of ksh93 in that respect. I'd even consider

Re: [dev] [sbase] shell scripts

2013-07-07 Thread Markus Teich
Why are these in C? Because shell scripts tend to run many processes compared to only one if you don't fork in the C code? --Markus

[dev] dwm bit fields conversion

2013-07-07 Thread koneu
In Xdefs.h, Bool is typedef'd as int (= at least 2 bytes, sometimes more, depending on the implementation), of which we set the last bit to 1 or 0. In the Monitor and Client structures dwm uses, we can instead use char bit fields, storing up to 8 Bool values in 1 byte. diff --git a/dwm.c b/dwm.c

Re: [dev] dwm bit fields conversion

2013-07-07 Thread Jacob Todd
this will be useful for running dwm on my pdp-11. On Sun, Jul 7, 2013 at 10:49 AM, koneu wrote: > In Xdefs.h, Bool is typedef'd as int (= at least 2 bytes, sometimes more, > depending on the implementation), of which we set the last bit to 1 or 0. > In the Monitor and Client structures dwm uses,

[dev] [sbase] [patch] Add crypt.[ch] and update md5sum and sha1sum

2013-07-07 Thread sin
Hi, Let me know if this makes sense. Thanks, stateless >From 6b7835c72d91bae7670ec7fab1d7ad1e1f0827cb Mon Sep 17 00:00:00 2001 From: sin Date: Sun, 7 Jul 2013 15:29:45 +0100 Subject: [PATCH] Add crypt.[ch] and update md5sum and sha1sum Factor out the code from md5sum and sha1sum into a util fun

Re: [dev] [sbase] shell scripts

2013-07-07 Thread Strake
On 07/07/2013, Markus Teich wrote: >> Why are these in C? > > Because shell scripts tend to run many processes compared to only one > if you don't fork in the C code? Is this a matter of efficiency alone?

Re: [dev] [sbase] [patch] Add crypt.[ch] and update md5sum and sha1sum

2013-07-07 Thread Galos, David
> Let me know if this makes sense. This is a bit too much. The only changes I will allow in {md5,sha1}.c are a change from `struct md5*` to `void*`. That should be entirely sufficient.

Re: [dev] [sbase] shell scripts

2013-07-07 Thread Joseph Xu
> Is this a matter of efficiency alone? The C implementation is straightforward and short. It doesn't get simpler if you wrote it in a higher level language. Your shell script is IMO much harder to understand.

[dev] [tabbed] Don't set cmd[0] to the window ID

2013-07-07 Thread Gregor Best
Ahoy, the attached patch fixes a tiny issue with tabbed. When running it without a command and having it run spawn(), it tried to execute its window ID as a command. While most people probably don't have executables called 341123 or the like in their path, I think that is not exactly intended. The

Re: [dev] [sbase] shell scripts

2013-07-07 Thread Jacob Todd
You could just use sed 10q file.

Re: [dev] [sbase] shell scripts

2013-07-07 Thread hiro
one more reason to use use proper plan9: bourne shell sucks a lot compared to rc.

Re: [dev] [sbase] shell scripts

2013-07-07 Thread Thorsten Glaser
hiro dixit: >one more reason to use use proper plan9: bourne shell sucks a lot >compared to rc. Well nobody uses bourne shell (that thing with U+0060 for COMSUBs and ^ instead of | as pipe character) any more. Welcome to the 21ₛₜ century. Although I freely admit that POSIX shell also sucks and