mirror of
https://git.savannah.gnu.org/git/parallel.git
synced 2024-11-22 14:07:55 +00:00
sem: --shebang-wrap example in manual.
This commit is contained in:
parent
44d5283151
commit
303bc5f465
|
@ -955,7 +955,7 @@ sub parse_options {
|
|||
|
||||
sub init_globals {
|
||||
# Defaults:
|
||||
$Global::version = 20141229;
|
||||
$Global::version = 20150101;
|
||||
$Global::progname = 'parallel';
|
||||
$Global::infinity = 2**31;
|
||||
$Global::debug = 0;
|
||||
|
|
|
@ -1534,6 +1534,9 @@ On FreeBSD B<env> is needed:
|
|||
debian.org
|
||||
freenetproject.org
|
||||
|
||||
There are many limitations of shebang (#!) depending on your operating
|
||||
system. See details on http://www.in-ulm.de/~mascheck/various/shebang/
|
||||
|
||||
|
||||
=item B<--shebang-wrap>
|
||||
|
||||
|
@ -3010,6 +3013,37 @@ same time:
|
|||
seq 3 | parallel sem --id mymutex sed -i -e 'i{}' myfile
|
||||
|
||||
|
||||
=head1 EXAMPLE: Mutex for a script
|
||||
|
||||
Assume a script is called from cron or from a web service, but only
|
||||
one instance can be run at a time. With B<sem> and B<--shebang-wrap>
|
||||
the script can be made to wait for other instances to finish. Here in
|
||||
B<bash>:
|
||||
|
||||
#!/usr/bin/sem --shebang-wrap -u --id $0 --fg /bin/bash
|
||||
|
||||
echo This will run
|
||||
sleep 5
|
||||
echo exclusively
|
||||
|
||||
Here B<perl>:
|
||||
|
||||
#!/usr/bin/sem --shebang-wrap -u --id $0 --fg /usr/bin/perl
|
||||
|
||||
print "This will run ";
|
||||
sleep 5;
|
||||
print "exclusively\n";
|
||||
|
||||
Here B<python>:
|
||||
|
||||
#!/usr/local/bin/sem --shebang-wrap -u --id $0 --fg /usr/bin/python
|
||||
|
||||
import time
|
||||
print "This will run ";
|
||||
time.sleep(5)
|
||||
print "exclusively";
|
||||
|
||||
|
||||
=head1 EXAMPLE: Start editor with filenames from stdin (standard input)
|
||||
|
||||
You can use GNU B<parallel> to start interactive programs like emacs or vi:
|
||||
|
|
Loading…
Reference in a new issue