1
0
mirror of https://github.com/MidnightCommander/mc synced 2025-03-13 11:23:09 +03:00
mc/po/strip-location.sh
2005-05-19 11:21:02 +00:00

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