Brian wrote:
> On Mon 09 May 2016 at 23:45:18 +0200, deloptes wrote:
>
>> Pol Hallen wrote:
>>
>> >> Unless I am misunderstanding the question,
>> >
>> > I need to print using 192.168.1.10 (server) not directly by network
>> > printer
>> >
>> > thanks!
>> >
>> >
>> > Pol
>>
>> Hi
>>
>> In
On 2016-05-10 11:18, Die Optimisten wrote:
Hi,
How can I escape a ' inside '...'
e.g. perl -e 'print '$ and a' '# I don't want to use "
thank you
Andrew
I have to add, its bash - specific
and PLEASE also CC: me using inform (AT) die-optimisten.net
I'm not subscribed here
THANKs
Hi,
How can I escape a ' inside '...'
e.g. perl -e 'print '$ and a' '# I don't want to use "
thank you
Andrew
Hello
echo hello!# displays that, BUT:
echo "Hello!" # tells:
-su: !": event not found# this worked years before without problem!
Is that intended? These leads to errors in many scripts (including
installig package dkms)
How can this be turned off? For me this behaviou should be cha
Hi,
It is the historical part of C shell, you can disable it typing or adding
it to your profile :
set +H
Regards,
Jonathan
Le 10 mai 2016 11:48 AM, "Die Optimisten" a
écrit :
Hello
echo hello!# displays that, BUT:
echo "Hello!" # tells:
-su: !": event not found# this worked years
this solved to me https://forum.dug.net.pl/viewtopic.php?pid=292809
On Tue, 10 May 2016 at 18:36, Die Optimisten
wrote:
> Hi,
>
> How can I escape a ' inside '...'
> e.g. perl -e 'print '$ and a' '# I don't want to use "
>
> thank you
> Andrew
>
> perl -e 'print '\''$ and a'\'' '
The things that might look like double quotes in the above depending on
your fo
'...' doesn't interpolate.
push @f, '$ and a';
push @f, "'";
print join '', @f;
If you want. I have a feeling YDIW and need to step back and present the
actual problem.
On May 10, 2016 05:36, "Die Optimisten" wrote:
> Hi,
>
> How can I escape a ' inside '...'
> e.g. perl -e 'print '$ and a' '
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
On Tue, May 10, 2016 at 11:20:23AM +0200, Die Optimisten wrote:
> On 2016-05-10 11:18, Die Optimisten wrote:
> >Hi,
> >
> >How can I escape a ' inside '...'
> >e.g. perl -e 'print '$ and a' '# I don't want to use "
The short answer is... you can't
On Tuesday 10 May 2016 11:18:06 Die Optimisten wrote:
> Hi,
>
> How can I escape a ' inside '...'
> e.g. perl -e 'print '$ and a' '# I don't want to use "
This seems to work:
perl -e 'print '\''$ and a'\'
It must be understood as the concatenation of these strings:
* literal string: 'p
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
On Tue, May 10, 2016 at 11:32:47AM +0200, Die Optimisten wrote:
> Hello
>
> echo hello!# displays that, BUT:
> echo "Hello!" # tells:
> -su: !": event not found# this worked years before without problem!
> Is that intended? These leads to
On Mon 09 May 2016 at 20:01:28 -0500, David Wright wrote:
> On Mon 09 May 2016 at 23:22:44 (+0100), Brian wrote:
> > On Mon 09 May 2016 at 23:45:18 +0200, deloptes wrote:
> > > Pol Hallen wrote:
> > > >> Unless I am misunderstanding the question,
> > > > I need to print using 192.168.1.10 (server)
Hi,
Die Optimisten wrote:
> > How can I escape a ' inside '...'
> > e.g. perl -e 'print '$ and a' '
Mark Fletcher wrote:
> perl -e 'print '\''$ and a'\'' '
Or by ending the range of ' and packing the literal ' into
double quotes:
perl -e 'print '"'"'$ and a'"'"' '
consisting of these quotati
try lpstat -a
T640 accepting requests since Mon 09 May 2016 07:29:09 PM CEST
Pol
Hi,
to...@tuxteam.de wrote:
>perl -e 'print '"'"'$ and a'"'"' '# I don't want to use "
You were faster than me. :))
> I.e. just use the '' where you need 'em
I actually do it vice versa:
If purely literal text is intended, i use '' where possible and
escape only '.
That's most safe be
Please post the outputs of 'lpstat -t' on the server and a client.
scheduler is running
system default destination: T640
device for PDF: cups-pdf:/
device for T640: socket://192.168.1.220:9100
PDF accepting requests since Mon 09 May 2016 07:25:03 PM CEST
T640 accepting requests since Tue 10 May
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
On Tue, May 10, 2016 at 01:08:04PM +0200, Thomas Schmitt wrote:
> Hi,
>
> to...@tuxteam.de wrote:
> >perl -e 'print '"'"'$ and a'"'"' '# I don't want to use "
>
> You were faster than me. :))
>
>
> > I.e. just use the '' where you need 'em
On Tue 10 May 2016 at 13:12:14 +0200, Pol Hallen wrote:
> >Please post the outputs of 'lpstat -t' on the server and a client.
>
> scheduler is running
> system default destination: T640
> device for PDF: cups-pdf:/
> device for T640: socket://192.168.1.220:9100
> PDF accepting requests since Mon
> If there was no $ in the text, one could do it more simply by packing
the whole text into double quotes:
perl -e "print '$ and a' "
> Have a nice day :) Thomas
That's why I constructed that example :)
I think it would be useful to have a (new, meta) quote, which fully
hides contents from bas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
On Tue, May 10, 2016 at 01:54:35PM +0200, Die Optimisten wrote:
> > If there was no $ in the text, one could do it more simply by
> packing the whole text into double quotes:
> perl -e "print '$ and a' "
> > Have a nice day :) Thomas
>
> That's why I
On Tue 10 May 2016 at 12:58:13 +0200, Pol Hallen wrote:
> >>try lpstat -a
>
> T640 accepting requests since Mon 09 May 2016 07:29:09 PM CEST
Please test from your client with
lp -d T640 ~/.profile
Does the file print?
On Tue, May 10, 2016 at 9:20 PM wrote:
>
> If you are embedding longer scripts in your shell, consider using
> "here documents", which are more flexible wrt. embedded quotes.
> For one-liners, Thomas' solution works nicely.
>
> Except that it does what the OP clearly said he does NOT want to do -
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
On Tue, May 10, 2016 at 01:14:57PM +, Mark Fletcher wrote:
> On Tue, May 10, 2016 at 9:20 PM wrote:
>
> >
> > If you are embedding longer scripts in your shell, consider using
> > "here documents", which are more flexible wrt. embedded quotes.
>
Hello,
On Tue, May 10, 2016 at 11:18:06AM +0200, Die Optimisten wrote:
> How can I escape a ' inside '...'
> e.g. perl -e 'print '$ and a' '# I don't want to use "
You can't, so if it were me I would use one of perl's alternatives
for single-quoted strings, such as:
perl -e 'print q{$ and a}
Suddenly, my computer has started emitting a chime sound at random
times. (Roughly every 30 minutes or so, but with high variance.) I
have found nothing else that correlates with this chiming. In
particular, nothing changes on the screen (i.e., no pop-ups, dialogs,
etc. show up).
I normally dis
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
On Tue, May 10, 2016 at 01:36:22PM +, Andy Smith wrote:
> Hello,
>
> On Tue, May 10, 2016 at 11:18:06AM +0200, Die Optimisten wrote:
> > How can I escape a ' inside '...'
> > e.g. perl -e 'print '$ and a' '# I don't want to use "
>
> You can'
On Tue 10 May 2016 at 13:16:27 (+), Mark Fletcher wrote:
> On Tue, May 10, 2016 at 9:20 PM wrote:
> > If you are embedding longer scripts in your shell, consider using
> > "here documents", which are more flexible wrt. embedded quotes.
> > For one-liners, Thomas' solution works nicely.
> >
> E
On Tue 10 May 2016 at 09:45:52 (-0400), Kynn Jones wrote:
> Suddenly, my computer has started emitting a chime sound at random
> times. (Roughly every 30 minutes or so, but with high variance.) I
> have found nothing else that correlates with this chiming. In
> particular, nothing changes on the
Hi,
> I think it would be useful to have a (new, meta) quote, which fully hides
> contents from bash-interpretion
The '' quote does this. It's simply impossible that an end quotation mark
can be distinguished from a literal quotation mark.
If there would be escaping of literal string end marks, t
On Tue 10 May 2016 at 16:19:10 (+0200), Thomas Schmitt wrote:
> Regrettably, Here Documents let the shell fiddle with their text.
>
> $ wc -c < $(echo hello)
> x
> 6
>
> So this is not a way to express arbitrary literal text.
$ wc -c <<"x"
$(echo hello)
x
14
$
Cheers,
David.
Chào bạn listn, hôm bữa mình có liên hệ đến bạn mà ko thấy bạn trả lời.. mình
thấy trang web của bạn có nhiều lượt người truy cập, nhưng trang web chưa có
gắn hộp chat uhchat .net
Hộp chát sẽ giúp khách truy cập nhắn tin với bạn ngay tại trang web và bạn cũng
biết được số điện thoại của họ để l
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
On Tue, May 10, 2016 at 04:19:10PM +0200, Thomas Schmitt wrote:
> Regrettably, Here Documents let the shell fiddle with their text.
>
> $ wc -c < $(echo hello)
> x
> 6
>
> So this is not a way to express arbitrary literal text.
Not if you q
Hi,
i wrote:
> > So this is not a way to express arbitrary literal text.
David Wright wrote:
> $ wc -c <<"x"
Indeed. One more way to reach the goal.
At least with bash and dash.
Have a nice day :)
Thomas
I tried to use mutt to send someone a zip file of about 50 Mb and got
the error: "Error sending message, child exited 1 (). Could not send
message."
I assumed the attachment was too large and so went to
/etc/exim4/conf.d/main/02*/ and altered the configuration to be:
# Message size limit. The d
I just now installed several fresh security updates for Wheezy LTS and received
the following error from dpkg (and I quote):
dpkg: error: error executing hook 'if [ -x
/usr/share/debian-security-support/check-support-status.hook ] ; then
/usr/share/debian-security-support/check-support-status.h
Find computer's hardware manual and see if chiming is something your
hardware will do no matter which operating system is in use to warn
about impending undesireable hardware events. You may find a table with
the different chime codes and may then find out why this now happens and
what to do a
On Tue 10 May 2016 at 11:07:47 (-0400), Haines Brown wrote:
> I tried to use mutt to send someone a zip file of about 50 Mb and got
> the error: "Error sending message, child exited 1 (). Could not send
> message."
>
> I assumed the attachment was too large and so went to
> /etc/exim4/conf.d/main/
On Tue 10 May 2016 at 10:28:24 -0500, David Wright wrote:
> On Tue 10 May 2016 at 11:07:47 (-0400), Haines Brown wrote:
> > I tried to use mutt to send someone a zip file of about 50 Mb and got
> > the error: "Error sending message, child exited 1 (). Could not send
> > message."
> >
> > I assume
David Wright wrote:
> On Tue 10 May 2016 at 11:07:47 (-0400), Haines Brown wrote:
>> I tried to use mutt to send someone a zip file of about 50 Mb and got
>> the error: "Error sending message, child exited 1 (). Could not send
>> message."
>>
>> I assumed the attachment was too large and so went
On Tue 10 May 2016 at 17:43:03 +0200, Sven Hartge wrote:
> David Wright wrote:
> > On Tue 10 May 2016 at 11:07:47 (-0400), Haines Brown wrote:
>
> >> I tried to use mutt to send someone a zip file of about 50 Mb and got
> >> the error: "Error sending message, child exited 1 (). Could not send
>
Brian wrote:
> On Tue 10 May 2016 at 17:43:03 +0200, Sven Hartge wrote:
>> David Wright wrote:
>> > On Tue 10 May 2016 at 11:07:47 (-0400), Haines Brown wrote:
I tried to use mutt to send someone a zip file of about 50 Mb and got
the error: "Error sending message, child exited 1 (). Co
Haines Brown wrote:
> I tried to use mutt to send someone a zip file of about 50 Mb and got
> the error: "Error sending message, child exited 1 (). Could not send
> message."
> I assumed the attachment was too large and so went to
> /etc/exim4/conf.d/main/02*/ and altered the configuration to be
> Gary Roach composed on 2016-04-30 12:08 (UTC-0700):
>
> >Someone said that I need to use a pastebin for images. I've never used
> >one before so another Fxx Learning Experience.
No, it's not necessary, in fact its preferable to not use pastebin.
There's been other threads where this has bee
On Tue, May 03, 2016 at 12:41:10PM -0700, Gary Roach wrote:
> >
> You know, I thought I had tried switching themes with out success. I just
> tried it again and the Oxygen theme cleared up the problem.
So this is the solution to a problem in another thread? :/
--
The media's the most powerful en
On Sun, May 01, 2016 at 11:57:34AM -0400, Gene Heskett wrote:
> On Sunday 01 May 2016 11:07:39 Sven Arvidsson wrote:
> >
> > "Do not submit an attachment larger than 10 KiB. Consider using
> > paste.debian.net and including a link in your post."
> >
> > From https://wiki.debian.org/DebianMa
On 10 May 2016 at 19:18, wrote:
> > Gary Roach composed on 2016-04-30 12:08 (UTC-0700):
> >
> > >Someone said that I need to use a pastebin for images. I've never used
> > >one before so another Fxx Learning Experience.
>
> No, it's not necessary, in fact its preferable to not use pastebin.
>
On Tue 10 May 2016 at 19:58:36 +0200, Sven Hartge wrote:
> Brian wrote:
> > On Tue 10 May 2016 at 17:43:03 +0200, Sven Hartge wrote:
> >> David Wright wrote:
> >>> Isn't the Debian way to put
>
> >>> MESSAGE_SIZE_LIMIT=foo
>
> >>> into /etc/exim4/update-exim4.conf.conf and then run
> >>> # d
On Wed 11 May 2016 at 06:36:43 +1200, cbannis...@slingshot.co.nz wrote:
> On Sun, May 01, 2016 at 11:57:34AM -0400, Gene Heskett wrote:
> > On Sunday 01 May 2016 11:07:39 Sven Arvidsson wrote:
> > >
> > > "Do not submit an attachment larger than 10 KiB. Consider using
> > > paste.debian.ne
On Sun, May 01, 2016 at 08:39:58PM +0100, Lisi Reisz wrote:
> On Sunday 01 May 2016 19:43:37 Curt wrote:
> > As far as here goes, in mixed company, the masculine form takes
> > precedence (which may or may not have anything to do with anything).
>
> Depending. "Guys" can indeed sometimes be used
While I agree with the general principle, "guys" doesn't really work in mixed
company (most women definitely do not want to be "one of the guys"). "People"
probably works better.
But it might give one second thoughts about using the word "guy" at all if one
knew the origin of the word: It com
On Tue, 10 May 2016 17:03:47 +0100
Brian wrote:
>On Tue 10 May 2016 at 17:43:03 +0200, Sven Hartge wrote:
>
>> David Wright wrote:
>> > On Tue 10 May 2016 at 11:07:47 (-0400), Haines Brown wrote:
>>
>> >> I tried to use mutt to send someone a zip file of about 50 Mb and got
>> >> the erro
On Tue, 10 May 2016 19:16:30 +
"John L. Ries" wrote:
> > gender, and it is "man"kind. But I object to "Sirs"!!!
>
> Me too! I definitely haven't been knighted.
>
None of my male teachers had, either, but...
--
Joe
On Tue 10 May 2016 at 12:56:47 -0600, Charlie Kravetz wrote:
> On Tue, 10 May 2016 17:03:47 +0100
> Brian wrote:
> >
> >Didn't spot that; exim's .confs can be confusing. What file is used for
> >non-split configuration?
> >
>
> Not meaning to send this to you, Brian, but I lost the previous mess
On Tuesday 10 May 2016 19:42:41 Michael Fothergill wrote:
> On 10 May 2016 at 19:18, wrote:
> > > Gary Roach composed on 2016-04-30 12:08 (UTC-0700):
> > > >Someone said that I need to use a pastebin for images. I've never used
> > > >one before so another Fxx Learning Experience.
> >
> > No,
On 10 May 2016 at 21:03, Eike Lantzsch wrote:
> On Tuesday 10 May 2016 19:42:41 Michael Fothergill wrote:
> > On 10 May 2016 at 19:18, wrote:
> > > > Gary Roach composed on 2016-04-30 12:08 (UTC-0700):
> > > > >Someone said that I need to use a pastebin for images. I've never
> used
> > > > >one
On Wed, 11 May 2016 at 04:43, Brian wrote:
> On Tue 10 May 2016 at 12:56:47 -0600, Charlie Kravetz wrote:
>
> > On Tue, 10 May 2016 17:03:47 +0100
> > Brian wrote:
> > >
> > >Didn't spot that; exim's .confs can be confusing. What file is used for
> > >non-split configuration?
> > >
> >
> > Not m
On Tuesday 10 May 2016 20:16:30 John L. Ries wrote:
> traditionally hanged on Guy Fawkes Day.
No, traditionally burned on Guy Fawkes Day.
Lisi
# aptitude search iceape
...
c iceape-browser- Iceape Navigator (Internet
browser) and Composer
c iceape-chatzilla - Iceape Chatzilla IRC client
v iceape-dom-inspector -
c iceape-mailnews
That's the last last line printed to screen as a result of a dist-upgrade
from Wheezy to Jessie. What do the numbers actually refer to, particularly
those within [ ]?
Space consumed on 19G / before starting was ~39%, after, ~71%. I actually did
two dist-upgrades, doing Squeeze to Wheezy first.
Dear fellow debian users,
I am grateful for the efforts that goes into debian gnu/linux.
One observation: In this list more users, less email traffic represent
scissors graphic and we are there. Let there be hope.
Freetuxtv can pass synching channels in jessie. Original support site says
it was
On 05/10/2016 06:36 AM, Andy Smith wrote:
perl -e 'print q{$ and a} '
+1
David
https://packages.debian.org/search?suite=jessie&arch=any&mode=filename&searchon=contents&keywords=iceape
actually I have no such package.
с - it means that when the package is installed, but not purged from the
system.
On 11.05.2016 04:25, Felix Miata wrote:
What? How can a package manager f
Felix Miata wrote:
> That's the last last line printed to screen as a result of a dist-upgrade
> from Wheezy to Jessie. What do the numbers actually refer to, particularly
> those within [ ]?
>
> Space consumed on 19G / before starting was ~39%, after, ~71%. I actually
> did two dist-upgrades, do
63 matches
Mail list logo