mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 20:36:50 +03:00
9 lines
105 B
Bash
Executable File
9 lines
105 B
Bash
Executable File
#! /bin/sh
|
|
set -e
|
|
|
|
for i in "$@"; do
|
|
i="./$i"
|
|
sed '/^#:/d' < "$i" > "$i.tmp"
|
|
mv -f "$i.tmp" "$i"
|
|
done
|