18 lines
121 B
Bash
Executable File
18 lines
121 B
Bash
Executable File
#!/bin/bash
|
|
|
|
##
|
|
|
|
set -e;
|
|
|
|
set -x;
|
|
|
|
##
|
|
|
|
cat /etc/issue;
|
|
|
|
echo "Shinobi OS Sian 20.04" > /etc/issue;
|
|
|
|
cat /etc/issue;
|
|
|
|
##
|