Displaying 20 results from an estimated 66 matches for "typescripts".
Did you mean:
typescript
2006 Apr 20
0
SSH and file descriptors
Let me start with "I am not sure if problem I describe is really ssh
problem" so excuse me in that case.
I've needed to make a login shell wrapper for one of users (an example
below) to my own script:
<script>
#!/bin/bash
ls -la /this_does_not_exist /etc/passed
</script>
(shebang with -l or -i does not affect the problem)
Real script does not matter, this example
2015 Dec 07
2
Using typescript as a default shell?
Is it possible to use 'script' command that records what happens in a session
as the default shell? How could you deal with multiple logins at once? What
about output from rsync and the like?
2015 Dec 07
0
Using typescript as a default shell?
On Mon, 07 Dec 2015 11:21:13 -0800
Benjamin Smith wrote:
> Is it possible to use 'script' command that records what happens in a session
> as the default shell? How could you deal with multiple logins at once? What
> about output from rsync and the like?
What problem are you attempting to solve? Have you looked at the bash 'history' command?
--
MELVILLE THEATRE ~
2010 Mar 21
3
[LLVMdev] LLVM on Solaris/Intel?
> I don't know anything about Solaris, but your paste doesn't actually
> contain any errors, just warnings (unless I'm reading "ld: warning:
> relocation error:" wrong). It might help to run make without -j until
> it fails, and then use `make VERBOSE=1` to print the exact commands
> it's running.
Sorry. There was so much output I wasn't sure how much
2015 Dec 07
2
Using typescript as a default shell?
On Monday, December 07, 2015 01:29:54 PM Frank Cox wrote:
> Benjamin Smith wrote:
> > Is it possible to use 'script' command that records what happens in a
> > session as the default shell? How could you deal with multiple logins at
> > once? What about output from rsync and the like?
>
> What problem are you attempting to solve? Have you looked at the bash
2003 Dec 12
4
Session Logging
I'm using R from a Linux command prompt, and am logging the
whole session by tee'ing the R invocation line. ie. R | tee -a Rlog.txt
Is there a better way to log all the session input and output from
within R?
Stan Smiley
stan.smiley at genetics.utah.edu
2005 Sep 17
1
looks in liblapack.a not liblapack.so
I can't compile R-alpha on AMD 64. Rather than include a 1400 line script
I have put it on the web
http://www.stat.umn.edu/~charlie/typescript.txt
way down near the bottom it fails building lapack.so
gcc -shared -L/usr/local/lib64 -o lapack.so Lapack.lo -llapack -lblas -lg2c -lm -lgcc_s
/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/../../../../x86_64-suse-linux/bin/ld:
2001 Nov 05
3
Can't compile under RH 7.2
All --
Has anyone gotten samba to compile under RH 7.2? I tried:
2.2.2 NOPE
2.2.0 NOPE
2.0.0 NOPE
1.9.00 YES
CVS HEAD NOPE
In the cases of the 2.* versions (and CVS head) I ran ./configure
and make. In the case of 1.9.00, I edited the Makefile for a non-
shadow Linux host (and added -lcrypt).
I'm attaching a typescript file of my latest attempt at
2009 Dec 15
2
apparently incorrect p-values from 2-sided Kolmogorov-Smirnov test (PR#14145)
This message is in MIME format. The first part should be readable text,
while the remaining parts are likely unreadable without MIME-aware tools.
--1132542651-1468968864-1260896436=:8788
Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII
I am using R version 2.6.2 (2008-02-08) on a Ubuntu Linux system.
I seemed to be finding occasional errors in the p-values produced by
ks.test(a,b)
2008 Feb 05
2
Incomplete ouput with sink and split=TRUE
Dear List,
I am trying to get R's terminal output to a file and to the terminal
at the same time, so that I can walk through some tests and keep a log
concurrently. The function 'sink' with the option split=TRUE seems to
do just that. It works fine for most output but for objects of class
htest, the terminal output is incomplete (the lines are there but
empty). Here is an
2010 Mar 21
0
[LLVMdev] LLVM on Solaris/Intel?
On Sat, Mar 20, 2010 at 8:17 PM, Skip Montanaro <skip at pobox.com> wrote:
> Is LLVM supported on Solaris 10/Intel? I tried building the 2.7 pre-release
> today but it failed to build (tried gcc 4.2 and 4.4). It fails trying to
> link in one of the directories. Here's a small part of the make output (it's
> huge):
>
> http://pastebin.com/ZeZQgKqz
>
> I
2010 Mar 23
0
[LLVMdev] LLVM on Solaris/Intel?
On 21/03/2010, at 10:38 PM, Skip Montanaro wrote:
>> I don't know anything about Solaris, but your paste doesn't actually
>> contain any errors, just warnings (unless I'm reading "ld: warning:
>> relocation error:" wrong). It might help to run make without -j until
>> it fails, and then use `make VERBOSE=1` to print the exact commands
>>
2017 Mar 13
2
How do I confirm importing repo key without user intervention?
> It looks like the passenger RPM has a script importing the GPG key. Check using "rpm -q --scripts passenger".
>From what I can see, it doesn't:
# rpm -q --scripts passenger
postinstall scriptlet (using /bin/sh):
if /usr/sbin/sestatus | grep 'SELinux status' | grep -q enabled; then
actual_selinux_variants=;
for selinux_policy_file in /etc/selinux/*/policy;
2023 Mar 09
0
njs-0.7.11
Hello,
I'm glad to announce a new release of NGINX JavaScript module (njs).
Notable new features:
- XMLNode API to modify XML documents:
: const xml = require("xml");
: let data = `<note><to b="bar" a="foo">Tove</to><from>Jani</from></note>`;
: let doc = xml.parse(data);
:
: doc.$root.to.$attr$b = 'bar2';
:
2023 Apr 10
0
njs-0.7.12
Hello,
I'm glad to announce a new release of NGINX JavaScript module (njs).
Notable new features:
- "zlib" module:
: const zlib = require('zlib');
: zlib.deflateRawSync('αβγ').toString('base64')
: /* "O7fx3KZzmwE=" */
:
: zlib.inflateRawSync(Buffer.from('O7fx3KZzmwE=', 'base64')).toString()
: /* "αβγ" */
Learn more about
2023 Sep 12
0
njs-0.8.1
Hello,
I'm glad to announce a new release of NGINX JavaScript module (njs).
Notable new features:
- Periodic code execution:
js_periodic direcrive specifies a content handler to run at regular
interval.
The handler receives a session object as its first argument, it also has
access
to global objects such as ngx.
: example.conf:
: location @periodics {
: # to be run at 1 minute
2023 Oct 24
0
njs-0.8.2
Hello,
I'm glad to announce a new release of NGINX JavaScript module (njs).
Notable new features:
- console object in nginx modules:
Console object is a global object that provides access to the environment's
console. It can be used to log information to the console, using
console.log(), console.info(), console.warn(), console.error() methods.
This feature unifies logging in nginx
2024 Apr 16
0
njs-0.8.4
Hello,
I'm glad to announce a new release of NGINX JavaScript module (njs).
This release introduced the initial QuickJS engine support in CLI
as well as regular bugfixes.
Notable new features:
- QuickJS in njs CLI:
: $ ./configure --cc-opt="-I/path/to/quickjs -L/path/to/quickjs" && make njs
: $ ./build/njs -n QuickJS
:
: >> new Map()
: [object Map]
Learn more about
2024 Oct 22
0
njs-0.8.7
Hello,
I'm glad to announce a new release of NGINX JavaScript module (njs).
This release fixes excessive memory consumption introduced in 0.8.6.
Learn more about njs:
- Overview and introduction:
https://nginx.org/en/docs/njs/
- NGINX JavaScript in Your Web Server Configuration:
https://youtu.be/Jc_L6UffFOs
- Extending NGINX with Custom Code:
2007 Oct 31
1
GIT repository problems
The attached (full) typescript has a lot of nasty looking errors.
Need I worry about consistency?
Abbreviated:
$ cg-clone -s http://www.kernel.org/pub/scm/boot/syslinux/syslinux.git
Initialized empty Git repository in .git/
....
progress: 55 objects, 124183 bytes
Fetching tags...
Missing tag before.graphics.merge...
Missing tag before.graphics.merge...
Missing tag syslinux-1.60...
[[[repeats