added core linux file system (kinda)
This commit is contained in:
@@ -1,16 +1,74 @@
|
||||
{
|
||||
"/": {
|
||||
"file1.txt": "this is the content of file1<br> i like cheese :)",
|
||||
"bin": "dir",
|
||||
"etc": "dir",
|
||||
"home": "dir",
|
||||
"usr": "dir",
|
||||
"var": "dir",
|
||||
"root": "noperms",
|
||||
"sys": "noperms"
|
||||
},
|
||||
"/home/": {
|
||||
"guest": "dir"
|
||||
},
|
||||
"/home/guest/": {
|
||||
"file1.txt": "this is the content of file1<br>i like cheese :)",
|
||||
"projects": "dir"
|
||||
},
|
||||
"/projects/": {
|
||||
"/home/guest/projects/": {
|
||||
"personal": "dir"
|
||||
},
|
||||
"/projects/personal/": {
|
||||
"/home/guest/projects/personal/": {
|
||||
"discord_bot_builder": "dir"
|
||||
},
|
||||
"/projects/personal/discord_bot_builder/": {
|
||||
"about.txt":"This project is a pesonal project of mine. The goal is that you can easily create discord bots, with commands, to automate some stuff in your discord server!",
|
||||
"/home/guest/projects/personal/discord_bot_builder/": {
|
||||
"about.txt": "This project is a personal project of mine. The goal is that you can easily create discord bots, with commands, to automate some stuff in your discord server!",
|
||||
"links.txt": "GitHub: <a href=`` onclick='window.location.href=`https://github.com/HerpieDerpieee/PS-Discord-BotBuilder/`'>https://github.com/HerpieDerpieee/PS-Discord-BotBuilder/</a>"
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
"/bin/": {
|
||||
"clear": "executable program",
|
||||
"ls": "executable program",
|
||||
"whoami": "executable program",
|
||||
"cd": "executable program",
|
||||
"pwd": "executable program",
|
||||
"cat": "executable program",
|
||||
"help": "executable program",
|
||||
"info": "executable program"
|
||||
},
|
||||
"/etc/": {
|
||||
"passwd": "user account information<br>root:x:0:0:root:/root:/bin/bash<br>guest:x:1000:1000::/home/guest:/bin/bash",
|
||||
"hostname": "HerpDerpOS 1.0.13<br>",
|
||||
"hosts": "127.0.0.1 localhost<br>::1 localhost"
|
||||
},
|
||||
"/usr/": {
|
||||
"bin": "dir",
|
||||
"lib": "dir",
|
||||
"share": "dir"
|
||||
},
|
||||
"/usr/bin/": {
|
||||
"grep": "executable program",
|
||||
"find": "executable program"
|
||||
},
|
||||
"/var/": {
|
||||
"log": "dir",
|
||||
"www": "dir"
|
||||
},
|
||||
"/var/log/": {
|
||||
"messages": "system and application messages<br>...",
|
||||
"secure": "authentication and authorization logs<br>..."
|
||||
},
|
||||
"/var/www/": {
|
||||
"html": "dir"
|
||||
},
|
||||
"/var/www/html/": {
|
||||
"index.html": "<!DOCTYPE html><br><html><br><head><br><title>Welcome to Fedora Server</title><br></head><br><body><br><h1>Hello, World!</h1><br></body><br></html>"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user