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