9 lines
160 B
Bash
9 lines
160 B
Bash
|
#!/bin/sh
|
||
|
# -*- mode: sh; fill-column: 75; tab-width: 8; coding: utf-8-unix -*-
|
||
|
|
||
|
ROLE=base
|
||
|
|
||
|
# filter or program
|
||
|
grep '=' "$*" \
|
||
|
| sed -e "s@=@: @" -e "s@^ *@@"
|