Re: How many ways can you run a script?

Liste des GroupesRevenir à ol misc 
Sujet : Re: How many ways can you run a script?
De : lew.pitcher (at) *nospam* digitalfreehold.ca (Lew Pitcher)
Groupes : comp.os.linux.misc
Date : 29. May 2024, 14:26:20
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <v376tc$14a46$2@dont-email.me>
References : 1
User-Agent : Pan/0.139 (Sexual Chocolate; GIT bf56508 git://git.gnome.org/pan2)
On Wed, 29 May 2024 19:15:34 +0800, Woozy Song wrote:

sh script
bash script
source script
taskset FF script
rsh localhost script
ssh localhost script
xterm -e script
nohup script
 
I know these are not all equivalent and may have idiosyncracies.
Any others?

Of course, these all use the compiled-language functions to
run scripts. So, let's include (the C API) lower-level functions:
  system("script");
  popen("script",...);
  if (fork() == 0) execl("script",...); else wait(void);

HTH
--
Lew Pitcher
"In Skills We Trust"

Date Sujet#  Auteur
29 May 24 * How many ways can you run a script?8Woozy Song
29 May 24 +- Re: How many ways can you run a script?1Andy Burns
29 May 24 +- Re: How many ways can you run a script?1Lew Pitcher
29 May 24 +- Re: How many ways can you run a script?1Lew Pitcher
30 May 24 +* Re: How many ways can you run a script?3Computer Nerd Kev
30 May 24 i+- Re: How many ways can you run a script?1Lawrence D'Oliveiro
30 May 24 i`- Re: How many ways can you run a script?1John-Paul Stewart
31 May 24 `- Re: How many ways can you run a script?1immibis

Haut de la page

Les messages affichés proviennent d'usenet.

NewsPortal