8 lines
109 B
Bash
8 lines
109 B
Bash
#!/bin/sh
|
|
|
|
grep "^ID=" /etc/os-release | cut -d '=' -f2-
|
|
|
|
echo toto | #
|
|
grep to
|
|
|
|
echo '#toto' | grep '#toto'
|