9 lines
160 B
Bash
Executable File
9 lines
160 B
Bash
Executable File
#!/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@^ *@@"
|