Re: [dev] What is bad with Python

2014-03-03 Thread Alex Pilon
y call them), has more shorthand (not that I consider that that great actually), etc. Anyhow, do you care about the implementation or the language itself? Regards, Alex Pilon pgp8Qo07tLqvw.pgp Description: PGP signature

Re: [dev] What is bad with Python?

2014-03-03 Thread Alex Pilon
ll sucks then? Anyhow, you can make your own mostly conformant implementation that compiles rather than interprets or JITs if you like. Not everything needs to be compiled, as nice as it would be sometimes. Regards, Alex Pilon pgpxzD0qgmTB1.pgp Description: PGP signature

Re: [dev] Macbook retina and dwm

2014-10-25 Thread Alex Pilon
> On Sun, 26 Oct 2014 01:00:05 +0300 Dimitris Zervas wrote: > > I though about system wide font enlargement or passing other > > resolution to X11 (possible?). > On Sun, Oct 26, 2014 at 12:41:15AM +0200, FRIGN wrote: > You are close. The _real_ way to do it is set the DPI in xorg.conf Or avoid to

Re: [dev] [sbase] style

2014-11-17 Thread Alex Pilon
> On Mon, 17 Nov 2014 13:24:21 -0800 Evan Gates wrote: > > headers > > === > > system headers (#include <...>) in alphabetical order > > empty line > > local headers (#include "...") in alphabetical order > > if there is any reason to change order, comment to explain > On Mon, Nov 17, 2014 at

Re: [dev] [anouncement] yacc

2015-03-03 Thread Alex Pilon
On Tue, Mar 03, 2015 at 06:50:27PM +, Quentin wrote: > https://github.com/mpu/ninja Name clash. Ninja's a build system. http://martine.github.io/ninja/ Would that not be an issue? Regards, Alex Pilon pgpcLvT2MogFg.pgp Description: PGP signature

Re: [dev] [anouncement] yacc

2015-03-03 Thread Alex Pilon
roject name with which I was concerned. Suppose that miniyacc's adopted by suckless¹ or some other project, it should not be an issue. However, if it preserves its original parent project's identity… well, hopefully that won't confuse anybody. Regards, Alex Pilon ¹: Though not i

Re: [dev] st: selecting text affects both primary and clipbaord

2015-03-10 Thread Alex Pilon
On Tue, Mar 10, 2015 at 05:18:49PM -0400, Greg Reagle wrote: > It could go the other way and do a variant of Ctrl+C for copy and Ctrl+V > for paste. I wouldn't use them directly because the programs running in > st probably need those keys. So Alt+Ctrl+C/V or Shitf+Ctrl+C/V or > Alt+C/V. > > Also

Re: [dev] st: selecting text affects both primary and clipbaord

2015-03-12 Thread Alex Pilon
> On 03/10/2015 10:49 PM, Alex Pilon wrote: > > Are you thinking of something like the attached? > On Wed, Mar 11, 2015 at 01:01:11PM -0400, Greg Reagle wrote: > That looks fine to me, looking at it briefly, but I haven't tested it (yet). Sorry about the noise. It *seemed* to

Re: [dev] st: selecting text affects both primary and clipbaord

2015-03-12 Thread Alex Pilon
> On Thu, Mar 12, 2015 at 04:35:58PM +0800, Kai Hendry wrote: > > My 2 cents: Suggestions to use 3 keys to copy & paste SUCK > > > > Can we please have feature parity with MacOSX? > > > > cmd-c, cmd-v > On Thu, Mar 12, 2015 at 08:17:22AM -0300, Amadeus Folego wrote: > This can be a problem for (I t

[dev] [st] Bugs in scrollback buffer patch

2015-03-12 Thread Alex Pilon
wn despite scrolling off. Has anybody encountered the last two, and already worked on them? Regards, Alex Pilon --- a/st.c +++ b/st.c @@ -1477,6 +1477,8 @@ kscrollup(const Arg* a) { if(term.scr <= histsize - n) { term.scr += n; + if (term.scr

[dev] [PATCH] Handle pasting of empty selection.

2015-03-16 Thread Alex Pilon
Otherwise, pasting the X11 primary selection when empty results an error and Xlib forcibly exits. --- st.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/st.c b/st.c index ac91d9f..cd470e7 100644 --- a/st.c +++ b/st.c @@ -1012,6 +1012,8 @@ selnotify(XEvent *e) { ofs = 0; x

[dev] [PATCH] Use git to create dist archives.

2015-03-16 Thread Alex Pilon
It's easy to forget things, like fixed with the following out of tree patch. commit ec6937b989a171e872c58bc60f8b21bd25880cd5 Author: M Farkas-Dyck Date: Wed Dec 10 14:29:34 2014 -0500 dist arg.h; needed to build diff --git a/Makefile b/Makefile index 52af636..25719

Re: [dev] [PATCH] Use git to create dist archives.

2015-03-16 Thread Alex Pilon
> On Mon, 16 Mar 2015 22:18:33 +0100 Alex Pilon wrote: > > Less code, and people notice when things aren't in the repo unlike a > > little used target. > On Mon, Mar 16, 2015 at 10:18:33PM +0100, Christoph Lohmann wrote: > That's too simple-minded. You are

Re: [dev] [PATCH] Use git to create dist archives.

2015-03-17 Thread Alex Pilon
On Tue, Mar 17, 2015 at 06:59:50AM +0100, Roberto E. Vargas Caballero wrote: > Why do you suppose that every person making a distribution package is > going to have a git repository?. We use git as our central > repository, but it doesn't mean we force to everyone to use it. I don't, but it's not

Re: [dev] [st] segfault when selecting text

2015-03-17 Thread Alex Pilon
On Tue, Mar 17, 2015 at 07:38:46PM -0300, Henrique Lengler wrote: > I'm running the last git-st on OpenBSD, What's your HEAD's ID? The reason I ask is because in 246c348, and all the way back to 2fcfea1bf149f839cdbcba5c1efc7c4ce31f6d95 at least, that's a comment line. Are you 28259f5750f0dc7f52bb

Re: [dev] [st] Bugs in scrollback buffer patch

2015-03-17 Thread Alex Pilon
r, but the authors are listed as Jochen Sprickerhof and Matthew on the web page, and http://lists.suckless.org/dev/1310/17807.html also mentions v4hn. Do we care here at suckless to preserve that metadata, or is a plain unified diff just fine? Proposed updated patch attached. Regards, Alex Pilon

Re: [dev] Re: [st] Bugs in scrollback buffer patch

2015-03-19 Thread Alex Pilon
On Thu, Mar 19, 2015 at 11:12:16AM +0100, Christian Neukirchen wrote: > There is still a bug that corrupts the last line when you are scrolled > up and output happens simultaneously. Yeah. I know. I only pushed because I won't be able to fix it for at least a week. > (I'm not familar with the cod

[dev] Updated hide cursor patch

2015-03-23 Thread Alex Pilon
mouse is moved. [ s/cursor/pointer - Alex Pilon ] --- st.c | 36 ++-- 1 file changed, 30 insertions(+), 6 deletions(-) diff --git a/st.c b/st.c index 39d3fee..b95a4a5 100644 --- a/st.c +++ b/st.c @@ -248,6 +248,11 @@ typedef struct { Draw draw; Visual *vis; XSetW

Re: [dev] Updated hide cursor patch

2015-03-23 Thread Alex Pilon
> On Mon, Mar 23, 2015 at 12:05:44PM -0400, Alex Pilon wrote: > > If there are no objections, I'd like to update the one on the wiki with > > the attached. > On Mon, Mar 23, 2015 at 09:28:35PM +0100, Ivan Delalande wrote: > This looks good, still applies and works wi

Re: [dev] sed breaks utf8 in [ ]

2015-03-30 Thread Alex Pilon
On Mon, Mar 30, 2015 at 07:09:41PM -0400, Roger wrote: > I thought non-ASCII characters required 16 bits within UTF-8, versus > just 8 bits for ASCII. 1. ASCII is a 7-bit encoding that we store in 8-bit bytes. 2. You don't encode non-ASCII with ASCII. That seems to be your logic. "I thought non

Re: [dev] sed breaks utf8 in [ ]

2015-03-31 Thread Alex Pilon
> > On 31 March 2015 at 00:13, Roger wrote: > > > But anyways, think I made my point. > > > On Tue, Mar 31, 2015 at 12:17:48AM +0100, Connor Lane Smith wrote: > > You did: you only care for whatever encoding you personally need over > > there in America. Most of us, however, are from Europe, do ne

[dev] [st] Flow control support

2015-04-19 Thread Alex Pilon
cfdfe Author: Alex Pilon Date: Fri Apr 10 18:24:10 2015 -0400 Add flow control support. config.def.h | 2 ++ st.c | 7 +++ 2 files changed, 9 insertions(+) I really should get back to fixing scrollback instead. pgpHNP0wVTAMb.pgp Description: PGP signature

Re: [dev] [st] Flow control support

2015-04-19 Thread Alex Pilon
too. Did it with a custom key function instead of in tcontrolcode, silly me. Both TCO{ON,OFF} and TCI{ON,OFF} work. Not sure which one is more correct. From 6faff33bb1fed94408ee4aad422fc5740eaac9ef Mon Sep 17 00:00:00 2001 From: Alex Pilon Date: Fri, 10 Apr 2015 18:24:10 -0400 Subject: [PATCH]

Re: [dev] [st] Flow control support

2015-04-19 Thread Alex Pilon
> On Sun, Apr 19, 2015 at 01:05:50PM -0400, Alex Pilon wrote: > > Is there much appetite for flow control support in > > what-shall-we-call-it—‘mainline’? > > > > I occasionally have a use for it, but would rather not further feature > > creep into what everybody e

Re: [dev] [st] Flow control support

2015-04-19 Thread Alex Pilon
and user pastes a huge > buffer into the terminal. Your patch just asks the other end to STOP > too, it makes no sense. K. Patch to be ignored, dropped on my end. I guess the matter's closed. Regards, Alex Pilon pgpr5bgj_rDgF.pgp Description: PGP signature

Re: [dev] [st][PATCH v2] Add tty line support

2015-04-21 Thread Alex Pilon
ult] dup(cmdfd); ^~~ ~ Regards, Alex Pilon pgpxLGLKooVts.pgp Description: PGP signature

[dev] [PATCH] Make build shut up about system() without return value check.

2015-04-21 Thread Alex Pilon
st.c:1321:2: warning: ignoring return value of function declared with warn_unused_result attribute [-Wunused-result] system(cmd); ^~ ~~~ Debatable whether an error here should case exit(EXIT_FAILURE). Just preserving the existing behaviour for now. --- st.c | 3 ++

Re: [dev] [st] [PATCH] Replace close and dup with dup2.

2015-04-22 Thread Alex Pilon
On Wed, Apr 22, 2015 at 09:28:10AM +0200, Roberto E. Vargas Caballero wrote: > We don't have any opportunity of having a race condition, so there is > no reason to use dup2 instead of dup. So I wil keep the current > version. Matter of style maybe. It's still annoying to have noise in the build.

Re: [dev] [st] [PATCH] Optimize memory footprint of line buffers

2015-04-27 Thread Alex Pilon
On Mon, Apr 27, 2015 at 06:56:59AM -0700, suigin wrote: > What's the general process and ettiquete for submitting patches, do we > submit them to solely to this mailing list, or should they also be > pushed via git for review? Non-maintainers like us can't push to the repository. Mailing list only

Re: [dev] [st] [PATCH] Replace close and dup with dup2.

2015-04-27 Thread Alex Pilon
On Mon, Apr 27, 2015 at 10:55:48AM +0200, Roberto E. Vargas Caballero wrote: > > Matter of style maybe. It's still annoying to have noise in the build. > > I don't admit this types of commits about quiting some compiler. Ideally, that's fine, and I'd very much agree with you. However, practically,

Re: [dev] [st] [PATCH] Replace close and dup with dup2.

2015-05-04 Thread Alex Pilon
20150304 (prerelease)? You still on 4.2 or 4.7? I didn't see anything in the distro choice of configure flags or the three patches for some three PRs in Arch. Yes I use Arch, because I don't have enough time to compile part of the morass of sucky software that I apparently *have* to use. Regards, Alex Pilon pgphpdYdyZoUY.pgp Description: PGP signature

Re: [dev] [st] Powerline fonts to large

2015-05-26 Thread Alex Pilon
do have such a patch already. From d7ec646572ee60c797547d1ea1dd4b89cc74d45a Mon Sep 17 00:00:00 2001 From: Alex Pilon Date: Fri, 27 Mar 2015 22:42:11 -0400 Subject: [PATCH] Bind Shift-Mousewheel to scrollback buffer up/down. --- config.def.h | 12 +--- st.c | 17 -

Re: [dev] surf release?

2015-06-01 Thread Alex Pilon
is terrible? What if I want some blue and orange dwm because the stock choice pale-ish blue and grey (in the 5.x days) is in humble my opinion ugly? Regards, Alex Pilon pgptGQ_Aq_fsk.pgp Description: PGP signature

Re: [dev] [surf] Using more memory than firefox

2015-06-02 Thread Alex Pilon
On Wed, Jun 03, 2015 at 10:29:32AM +0800, Ivan Tham wrote: > Why can't surf beat dillo which is a gecko-based browser? Are you sure? From both the Wikipedia and the project page, given what features they are talking about implementing, as well as for lack of Gecko references, it doesn't seem so.

Re: [dev] bluetooth without Python

2015-07-13 Thread Alex Pilon
> Pat wrote: > > I would like to install bluetooth in a lightweight maneer. > On Mon, Jul 13, 2015 at 09:49:13AM -0400, Bobby Powers wrote: > You may also need the helper programs located in the bluez package - > that pulls in DBus + Glib. bluetoothd (BlueZ 5 daemon) is accessed over DBus. > Not

Re: [dev] a suckless hex editor

2015-11-13 Thread Alex Pilon
On Fri, Nov 13, 2015 at 11:28:36AM -0500, Greg Reagle wrote: > What do you think? > > […] > > #!/bin/sh > > […] > dump="xxd -g1" > dedump="xxd -r" xxd's provided by vim. As convenient as it is, should a "suckless hex editor" really depend on that? It should be the user's choice or not to install v

Re: [dev] Languages that suck (was "Note On Webkit Versions")

2016-05-03 Thread Alex Pilon
> > seeing the new subject I feel obligated to leave this link here: > > https://www.destroyallsoftware.com/talks/wat > > Yeah, ruby is better than go, for sure in my experience. Great. Yet another poorly specified or documented language. Just what we need.

Re: [dev] Languages that suck (was "Note On Webkit Versions")

2016-05-03 Thread Alex Pilon
> > > > seeing the new subject I feel obligated to leave this link here: > > > > https://www.destroyallsoftware.com/talks/wat > > > > > > Yeah, ruby is better than go, for sure in my experience. > > > > Great. Yet another poorly specified or documented language. Just what we > > need. > > That was

Re: [dev] Linux distros that don't suck too too much

2016-05-11 Thread Alex Pilon
On Thu, May 12, 2016 at 02:33:41AM +0200, hiro wrote: > 9. hip applications have to run out of the box: skype, Corporate need? 'd say Hangouts, and let the browser do it for one less package, and better Linux quality anyway. > chrome, Chromium. > openoffice, No pref libre/open? > mplayer, mp

Re: [dev] [dlogout] I wrote a basic logout-/shutdown-menu for use with dwm.

2016-06-18 Thread Alex Pilon
On Sun, Jun 19, 2016 at 02:28:14AM +0300, Cág wrote: > Of course, tis just me. I'm sure Arch/Manjaro users > will find it useful. Uuuum, systemd does process ACPI events…

Re: [dev] [dlogout] I wrote a basic logout-/shutdown-menu for use with dwm.

2016-06-19 Thread Alex Pilon
> > Uuuum, systemd does process ACPI events… > > Please excuse me, I frankly have no idea of > all the "features". The fact that it does more > than boot, halt and reboot kills my desire > to try it. My point is that I don't want to add some other NIH tool to do things that my init system already

Re: [dev] Never Ending Systemd Chronicles

2016-08-07 Thread Alex Pilon
On Fri, Aug 05, 2016 at 01:12:12PM +0200, Hadrien LACOUR wrote: > But when you had to modify or write unit files, it wasn't fun. Dead easy. And you can even add to the definition rather than rewriting. > Even if most of the vocabulary is simple, the number of keywords is > simply too high; So is

Re: [dev] Never Ending Systemd Chronicles

2016-08-08 Thread Alex Pilon
On Sun, Aug 07, 2016 at 09:48:07PM -0800, Britton Kerin wrote: > > If you're going to make an argument against systemd, please make a > > stronger one. Repeated noise doesn't help The Cause™, as it seems to be > > around these parts. > > why all in pid 1? Seems like they didn't want you to be able

Re: [dev] [dwm] [microPATCH] normal root window title

2016-09-26 Thread Alex Pilon
On Mon, Sep 26, 2016 at 06:21:31PM +0100, Cág wrote: > Root window title becomes the same as normal fg and bg. > […] > - drw_setscheme(drw, scheme[m == selmon ? SchemeSel : > SchemeNorm]); > + drw_setscheme(drw, scheme[m == selmon ? SchemeNorm : > SchemeNor

Re: [dev] [st/dwm] Alt-Shift-C and Mod1-Shift-C

2017-01-12 Thread Alex Pilon
On Thu, Jan 12, 2017 at 07:25:06PM +0100, Patrick Bucher wrote: > I'm using st and dwm at the same time, and today I discovered a little problem > when using the default config of both programs. st uses Alt-Shift-C to copy > text > into the clipboard, […] How do you deal with that? Use Ctrl-Sfhit

Re: [dev] [st] Exit upon attempting to render glyph

2017-08-09 Thread Alex Pilon
= 1 I'd also suggest compiling with -g, and getting a backtrace with gdb. Something like this roughly: $ gdb ./st (gdb) start (gdb) continue [trigger the crash] (gdb) bt [copy-paste the backtrace below] Regards, Alex Pilon signature.asc Description: PGP signature

Re: [dev] [st] Exit upon attempting to render glyph

2017-08-09 Thread Alex Pilon
the font (heck, do it from the command line). But please, share a backtrace. Cheers, Alex Pilon P.S. Apologies for the broken threading/In-Reply-To before. NeoMutt c6b71abc (Fix empty In-Reply-To generation) signature.asc Description: PGP signature

Re: [dev] less(1) replacement?

2017-08-29 Thread Alex Pilon
; It's not just syntactic sugar; far from it. > And for namespaces (very usefull for static libs), the cpp is far from > enough. So you want real namespaces rather than function prefixes or suffixes as tends to be the game? Or do you mean something else entirely? Regards, Alex Pilon

Re: [dev] [general][discussion] constants: `#define` or `static const`

2017-10-13 Thread Alex Pilon
On Fri, Oct 13, 2017 at 10:29:41AM +, sylvain.bertr...@gmail.com wrote: > I would go #define and not direct "static const". > > Because I think "const" is part of the excess syntax of C and should be > optional (and treated as an optional variable attribute). You really don't think we should e

Re: [dev] [st] How can I scroll up in emacs

2017-11-17 Thread Alex Pilon
On Fri, Nov 17, 2017 at 10:39:10PM +0800, Amos Bird wrote: > when using tmux inside st, I can scroll up using mouse wheel. However when > inside emacs, I can only scroll down. From `C-h k` I saw it generates a `C-y` > when I scroll up. So what's going wrong? Nothing. It's working as intended. Ther

Re: [dev] [dmenu] doesnt open apps

2017-12-20 Thread Alex Pilon
> On Wed, Dec 20, 2017, at 16:19, Jorge Ga wrote: > > OS: Debian 9 WM: i3 > > When i open dmenu (mod+d on i3) i can search any app, but when i try > > to open, it just don't open. > > I try to debug the commands using i3 debug mode but i'm kinda lost, > > also i find on some arch linux post that ma

Re: [dev] Compilation errors for version 2.0 of surf

2018-04-17 Thread Alex Pilon
loated GCC or Clang root access. Regards, Alex Pilon

Re: [dev] [st] BadLength

2020-05-20 Thread Alex Pilon
2 3 ; 0 ⇒ Restore xterm icon and window title from stack. It's just trying to push and pop a window title onto a stack. Given that program terminal title setting is spotty, I kind of see the attraction, but I'm not authoritative on whether this should be in st. So again, not st's business. Working as intended. Cheers, Alex Pilon

Re: [dev] Ada not Rust

2021-04-20 Thread Alex Pilon
On Tue 2021-04-20 05:40:19 -0400, Greg Reagle wrote: > $ gnatmake hello -largs -static -bargs -static > $ ldd hello > not a dynamic executable > > Of course it is big now: 1.2M. I assume if I had musl it would be smaller. Wouldn't you need to turn on LTO—link time optimisation, for what l

[dev] D-Bus in the kernel

2013-02-08 Thread Alex Pilon
of course I woudn't advocate that in kernel space. Regards, Alex Pilon

Re: [dev] Call for pkgsrc users

2013-04-10 Thread Alex Pilon
On Wed, Apr 10, 2013 at 01:13:51PM -0500, William Giokas wrote: > […] you can actually disable almost every feature in systemd with > configure flags. * You can't disable DBus. Sure, sure, a lot of the rest of the world out there uses DBus. I don't unless I have to. It's not just accommodatin

Re: [dev] mail clients

2013-06-11 Thread Alex Pilon
On Mon, Jun 10, 2013 at 10:35:33PM +0300, Edgaras wrote: > Well mutt is niceish, but not suckless. (well at something like 20MB > of ram In what state? Stripped, idle and no configuration (~5mb shared+resident)? With a connection (let's add TLS on top too for more overhead) opened to some remote s

Re: [dev] mail clients

2013-06-11 Thread Alex Pilon
> On 11/06/13 at 09:18am, Alex Pilon wrote: > > Any body know of a suckless method of using IMAP mostly > > offline/disconnected? Offlineimap sucks and is brittle. > On Tue, Jun 11, 2013 at 06:55:19PM +0400, Peter A. Shevtsov wrote: > I'm quite happy with fdm[1]. I wou

Re: [dev] [sbase] built with watcom

2013-06-18 Thread Alex Pilon
> Jens Staal dixit: > > That depends on how you define "working". > On Tue, Jun 18, 2013 at 07:38:45PM +, Thorsten Glaser wrote: > Did nobody fork Arch from before it became poettering’d and UsrMove’d > yet? May call it Hintern Linux ;-) Last I spoke to strake, starch wasn't really ready yet.

Re: [dev] [sbase] built with watcom

2013-06-18 Thread Alex Pilon
> > Did nobody fork Arch from before it became poettering’d and UsrMove’d > > yet? May call it Hintern Linux ;-) > > I can understand why this crowd is afraid of systemd, but being afraid > of the /usr move stuff just baffles me. There's worse. http://jasonwryan.com/blog/2013/06/15/askin

Re: [dev] [sbase] Adding tar

2013-07-06 Thread Alex Pilon
On Sat, Jul 06, 2013 at 01:29:02PM +0200, Dmitrij Czarkoff wrote: > Apparently is there anybody who uses dashes in tar's keys? Yeah. Old habit.

Re: [dev] [st][PATCH] Wide character support

2013-09-07 Thread Alex Pilon
On Sat, Sep 07, 2013 at 06:26:44PM +0200, Roberto E. Vargas Caballero wrote: > After pull the patch I have problems with graphical characters (for example > lines and arrows in mutt). is there someone which could test it? What problems exactly? There were some minor cosmetic problems before the pa

Re: [dev] [dwm] Weird behavior of Java programs

2013-09-09 Thread Alex Pilon
> On 09/09/2013 10:31 PM, Louis-Guillaume Gagnon wrote: > >Simple case of RTMF: the issue is explained in dwm's man page. On Mon, Sep 09, 2013 at 11:54:53PM +0200, 7...@mail.com wrote: > Right, when I have a problem with java, I always read dwm's man... > That's utterly logical. “When I have a pr

Re: [dev] Talk about suckless

2013-09-25 Thread Alex Pilon
ng two hours for GCC, Glibc, etc.) for his/her fifteenth different ARM device (or Geode, which you can't use a VM too build packages `-march=native` for, if you intend to run the test suite), see what particularly interests him/her. Is it worth advertising lesser-known suckless but not Su

Re: [dev] [sbase] Command list

2013-10-17 Thread Alex Pilon
> > od, logname, uuencode, uudecode, mktemp, passwd, su, sed, patch Don't od's and hexdump's functionality overlap? Do we still really need uuencode and uudecode? Regards, Alex Pilon pgp4f42E0JREQ.pgp Description: PGP signature

Re: [dev] [sbase] Command list

2013-10-17 Thread Alex Pilon
> Alex Pilon dixit: > > Do we still really need uuencode and uudecode? > On Thu, Oct 17, 2013 at 07:46:35PM +, Thorsten Glaser wrote: > Yes! > > I often use them, in combination with GNU screen, to > copy/paste files(!) from one tab to the other, when > using othe

Re: [dev] [sbase] Command list

2013-10-18 Thread Alex Pilon
009604499/utilities/du.html#tag_04_40_10), mercifully, though that doesn't mean it makes handling a few special cases easy. Should we care about any such? The only ones that I can think of right now are newlines in the file names, which is pretty stupid but possible. Using du is

Re: [dev] [sbase] Command list

2013-10-19 Thread Alex Pilon
2 | ftest "( perm 111 || newer ./reference ) && user root" | > xargs rm The Solaris and SunOS users *might* not like you for that choice of name (“ptree”), but who cares? It's inconsequential. Regards, Alex Pilon pgp6lRFZpURJX.pgp Description: PGP signature

Re: [dev] [sbase] Command list

2013-10-19 Thread Alex Pilon
Apologies for the spam, some typos here… though you likely knew what I meant. On Fri, Oct 18, 2013 at 10:41:55AM -0400, Alex Pilon wrote: > No. ‘du -0 | cut -f 2-’, at least. `du -a …` > du -a \ > | cut -f 2- \ > | while read -rd f; do `while read -rd '' f; do` Stil