5 lines
79 B
Bash
Executable file
5 lines
79 B
Bash
Executable file
#!/bin/sh
|
|
|
|
for file in $@; do
|
|
sed s/_64//g $@ > $(sed s/_64//g <<< "$@")
|
|
done
|