X7ROOT File Manager
Current Path:
/usr/share/awk
usr
/
share
/
awk
/
ðŸ“
..
📄
assert.awk
(383 B)
📄
bits2str.awk
(334 B)
📄
cliff_rand.awk
(307 B)
📄
ctime.awk
(234 B)
📄
ftrans.awk
(315 B)
📄
getopt.awk
(2.15 KB)
📄
gettime.awk
(2.43 KB)
📄
group.awk
(1.72 KB)
📄
have_mpfr.awk
(221 B)
📄
inplace.awk
(1.95 KB)
📄
intdiv0.awk
(462 B)
📄
join.awk
(378 B)
📄
libintl.awk
(238 B)
📄
noassign.awk
(422 B)
📄
ord.awk
(937 B)
📄
passwd.awk
(1.17 KB)
📄
processarray.awk
(355 B)
📄
quicksort.awk
(1.01 KB)
📄
readable.awk
(489 B)
📄
readfile.awk
(267 B)
📄
rewind.awk
(404 B)
📄
round.awk
(661 B)
📄
shellquote.awk
(472 B)
📄
strtonum.awk
(1.42 KB)
📄
walkarray.awk
(214 B)
📄
zerofile.awk
(424 B)
Editing: shellquote.awk
# shell_quote --- quote an argument for passing to the shell # # Michael Brennan # brennan@madronabluff.com # September 2014 function shell_quote(s, # parameter SINGLE, QSINGLE, i, X, n, ret) # locals { if (s == "") return "\"\"" SINGLE = "\x27" # single quote QSINGLE = "\"\x27\"" n = split(s, X, SINGLE) ret = SINGLE X[1] SINGLE for (i = 2; i <= n; i++) ret = ret QSINGLE SINGLE X[i] SINGLE return ret }
Upload File
Create Folder