Skip to content

Commit 803872b

Browse files
committed
fix 'env' cmd path in some script.
1 parent 0acd12f commit 803872b

13 files changed

+13
-13
lines changed

Diff for: bashrc/grep3c.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/env bash
1+
#!/usr/bin/env bash
22

33
# if there is only one argument, exit
44

Diff for: bashrc/host2ip.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/env bash
1+
#!/usr/bin/env bash
22

33
host=$1;
44

Diff for: bashrc/killd

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/env bash
1+
#!/usr/bin/env bash
22

33
killd () {
44
for session in $(screen -ls | grep -o '[0-9]\{5\}')

Diff for: bashrc/parallel.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/env bash
1+
#!/usr/bin/env bash
22

33
conf_max_currency=10;
44
max=50;

Diff for: bashrc/parallelmain.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/env bash
1+
#!/usr/bin/env bash
22

33
CONFFILE="update.conf";
44
OLDCONFFILE="oldupdate.conf";

Diff for: batch_send.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/env perl
1+
#!/usr/bin/env perl
22
#
33

44
BEGIN {

Diff for: daemon.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/env perl
1+
#!/usr/bin/env perl
22

33
use POSIX;
44
use strict;

Diff for: dos2unix.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/env perl
1+
#!/usr/bin/env perl
22

33
my $new_file = shift @ARGV;
44

Diff for: iputils.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/env perl
1+
#!/usr/bin/env perl
22
#
33
# Author: soarpenguin <[email protected]>
44
# First release Jan.3 2014

Diff for: json.pl

100644100755
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/env perl
1+
#!/usr/bin/env perl
22

33
use lib ".";
44
use JSON::XS;

Diff for: replaceMatchLine.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/env perl
1+
#!/usr/bin/env perl
22

33
# replaceMatchLine.pl {{{1
44
#

Diff for: template.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/env perl
1+
#!/usr/bin/env perl
22
#
33

44
BEGIN {

Diff for: utils.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/env perl
1+
#!/usr/bin/env perl
22
#
33
# Author: soarpenguin <[email protected]>
44
# First release May.14 2013

0 commit comments

Comments
 (0)