6 lines
72 B
Plaintext
6 lines
72 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
sed "/^\/\//d" $1 |\
|
||
|
sed "/^#/d" |\
|
||
|
sed "/^\/\*/,/\*\/$/d"
|