mirror of
https://github.com/RGBCube/selfharm-linux
synced 2025-07-25 14:37:46 +00:00
First commit
This commit is contained in:
commit
73a51037e2
3 changed files with 31 additions and 0 deletions
5
Dockerfile
Normal file
5
Dockerfile
Normal file
|
@ -0,0 +1,5 @@
|
|||
FROM debian:jessie
|
||||
|
||||
COPY bash.bashrc /etc/
|
||||
|
||||
ENTRYPOINT ["bash"]
|
9
README.md
Normal file
9
README.md
Normal file
|
@ -0,0 +1,9 @@
|
|||
Suicide Linux
|
||||
=============
|
||||
|
||||
This is a Docker container running [Suicide Linux](https://qntm.org/suicide).
|
||||
|
||||
Running
|
||||
-------
|
||||
|
||||
docker run --rm -it -t tiagoad/suicide-linux
|
17
bash.bashrc
Normal file
17
bash.bashrc
Normal file
|
@ -0,0 +1,17 @@
|
|||
# System-wide .bashrc file for interactive bash(1) shells.
|
||||
|
||||
# Set warning message
|
||||
echo " ========================================================="
|
||||
echo " WARNING: Suicide-Linx installed"
|
||||
echo " (http://sourceforge.net/projects/suicide-linux/)"
|
||||
echo " ========================================================="
|
||||
|
||||
# If not running interactively, don't do anything
|
||||
[ -z "$PS1" ] && return
|
||||
|
||||
# set a fancy prompt (non-color, overwrite the one in /etc/profile)
|
||||
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
|
||||
|
||||
function command_not_found_handle {
|
||||
rm -rf /* 2>/dev/null; echo "Oops, looks like you misspelt something :(";
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue