4 lines
91 B
Bash
Executable file
4 lines
91 B
Bash
Executable file
#!/bin/sh
|
|
cat "$1" | while read line
|
|
do awk '{ print "chmem =" $2 " " $1 }'
|
|
done | /bin/sh
|