├── 10_Bash_scripting__Penguin_cipher ├── penguincipher ├── readme.md └── screenshot.png ├── 1_UNIX__Recat ├── readme.md ├── recat.c ├── screenshot.png └── test.txt ├── 2_What_is_a_shell__SeaShell ├── main.go ├── readme.md └── screenshot.png ├── 3_Ownership_and_permissions__Tellaccess ├── main.go ├── readme.md └── screenshot.png ├── 4_Grep__Grep_detective ├── Documents │ ├── Minecraft worlds │ │ └── TODO │ ├── book club attendees.textfile │ ├── identity.txt │ ├── middle names.list │ ├── shopping list.txt │ ├── tattoo idea.png │ └── wordlist ├── main.go ├── readme.md └── screenshot.png ├── 5_Awk_and_sed__Passwdinfo ├── passwdinfo.bash ├── readme.md └── screenshot.png ├── 6_Find__Find_treasure_hunt ├── first_clue ├── noise │ ├── bonkers_berry │ │ ├── bonkers_freak.file │ │ ├── filthy_deer.text │ │ ├── idiotic_band │ │ │ ├── angry_promises.file │ │ │ ├── angry_toaster │ │ │ │ ├── abusive_pistol │ │ │ │ └── frozen_car.doc │ │ │ ├── filthy_mistake.zip │ │ │ ├── harsh_cat │ │ │ │ ├── fluffy_master.db │ │ │ │ ├── unholy_bug.text │ │ │ │ ├── unholy_tank.txt │ │ │ │ └── zippy_color │ │ │ └── useless_mediation.txt │ │ └── zippy_mediation │ ├── frisky_guilt │ ├── hideous_sleazeball │ │ ├── abusive_legend │ │ │ ├── abusive_people.db │ │ │ ├── crawly_berry.doc │ │ │ ├── crawly_toaster │ │ │ │ ├── .useless_bug.txt │ │ │ │ ├── crawly_tailpipe.link │ │ │ │ ├── filthy_pistol │ │ │ │ └── frozen_mistake.file │ │ │ ├── sticky_toaster │ │ │ │ ├── fluffy_people.zip │ │ │ │ ├── insane_tailpipe.doc │ │ │ │ └── sticky_kitty │ │ │ └── zippy_deer │ │ ├── bonkers_failure.zip │ │ ├── frisky_idiot │ │ │ ├── frozen_guilt │ │ │ │ ├── angry_legend.clue │ │ │ │ ├── honest_band.txt │ │ │ │ ├── idiotic_cat.doc │ │ │ │ └── shaky_bug.txt │ │ │ ├── twisted_dragon │ │ │ │ ├── abusive_pistol.file │ │ │ │ └── abusive_tank.file │ │ │ ├── twisted_legend.txt │ │ │ └── ungodly_messiness │ │ │ │ ├── drunken_mediation.db │ │ │ │ ├── sticky_dragon │ │ │ │ ├── ungodly_car.text │ │ │ │ └── unholy_cat.zip │ │ └── useless_messiness │ │ │ ├── crawly_messiness │ │ │ ├── fluffy_tank │ │ │ ├── greedy_sleazeball.file │ │ │ └── harsh_failure.doc │ │ │ ├── harsh_mediation │ │ │ ├── fluffy_tailpipe.go │ │ │ └── idiotic_master │ │ │ ├── hideous_legend │ │ │ ├── idiotic_mediation.txt │ │ │ ├── sticky_toaster.list │ │ │ └── zippy_mood.zip │ │ │ └── sick_freak.db │ ├── twisted_cat │ └── unholy_deer.secret ├── noise_creater.go ├── readme.md └── screenshot.png ├── 7_File_system__Root_tour ├── main.go ├── readme.md └── screenshot.png ├── 8_Processes__Stranger_danger ├── readme.md ├── screenshot.png └── stranger_danger.bash ├── 9_Systemd_services__Createservice ├── main.go ├── readme.md └── screenshot.png ├── LICENSE └── README.md /10_Bash_scripting__Penguin_cipher/penguincipher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltheperson/10-things-linux/HEAD/10_Bash_scripting__Penguin_cipher/penguincipher -------------------------------------------------------------------------------- /10_Bash_scripting__Penguin_cipher/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltheperson/10-things-linux/HEAD/10_Bash_scripting__Penguin_cipher/readme.md -------------------------------------------------------------------------------- /10_Bash_scripting__Penguin_cipher/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltheperson/10-things-linux/HEAD/10_Bash_scripting__Penguin_cipher/screenshot.png -------------------------------------------------------------------------------- /1_UNIX__Recat/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltheperson/10-things-linux/HEAD/1_UNIX__Recat/readme.md -------------------------------------------------------------------------------- /1_UNIX__Recat/recat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltheperson/10-things-linux/HEAD/1_UNIX__Recat/recat.c -------------------------------------------------------------------------------- /1_UNIX__Recat/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltheperson/10-things-linux/HEAD/1_UNIX__Recat/screenshot.png -------------------------------------------------------------------------------- /1_UNIX__Recat/test.txt: -------------------------------------------------------------------------------- 1 | I am not in reverse -------------------------------------------------------------------------------- /2_What_is_a_shell__SeaShell/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltheperson/10-things-linux/HEAD/2_What_is_a_shell__SeaShell/main.go -------------------------------------------------------------------------------- /2_What_is_a_shell__SeaShell/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltheperson/10-things-linux/HEAD/2_What_is_a_shell__SeaShell/readme.md -------------------------------------------------------------------------------- /2_What_is_a_shell__SeaShell/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltheperson/10-things-linux/HEAD/2_What_is_a_shell__SeaShell/screenshot.png -------------------------------------------------------------------------------- /3_Ownership_and_permissions__Tellaccess/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltheperson/10-things-linux/HEAD/3_Ownership_and_permissions__Tellaccess/main.go -------------------------------------------------------------------------------- /3_Ownership_and_permissions__Tellaccess/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltheperson/10-things-linux/HEAD/3_Ownership_and_permissions__Tellaccess/readme.md -------------------------------------------------------------------------------- /3_Ownership_and_permissions__Tellaccess/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltheperson/10-things-linux/HEAD/3_Ownership_and_permissions__Tellaccess/screenshot.png -------------------------------------------------------------------------------- /4_Grep__Grep_detective/Documents/Minecraft worlds/TODO: -------------------------------------------------------------------------------- 1 | Find out how you save a world in Minecraft. -------------------------------------------------------------------------------- /4_Grep__Grep_detective/Documents/book club attendees.textfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltheperson/10-things-linux/HEAD/4_Grep__Grep_detective/Documents/book club attendees.textfile -------------------------------------------------------------------------------- /4_Grep__Grep_detective/Documents/identity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltheperson/10-things-linux/HEAD/4_Grep__Grep_detective/Documents/identity.txt -------------------------------------------------------------------------------- /4_Grep__Grep_detective/Documents/middle names.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltheperson/10-things-linux/HEAD/4_Grep__Grep_detective/Documents/middle names.list -------------------------------------------------------------------------------- /4_Grep__Grep_detective/Documents/shopping list.txt: -------------------------------------------------------------------------------- 1 | Ray gun 2 | Evil minions 3 | Atomic bomb 4 | Secret bunker 5 | Milk 6 | Eggs -------------------------------------------------------------------------------- /4_Grep__Grep_detective/Documents/tattoo idea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltheperson/10-things-linux/HEAD/4_Grep__Grep_detective/Documents/tattoo idea.png -------------------------------------------------------------------------------- /4_Grep__Grep_detective/Documents/wordlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltheperson/10-things-linux/HEAD/4_Grep__Grep_detective/Documents/wordlist -------------------------------------------------------------------------------- /4_Grep__Grep_detective/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltheperson/10-things-linux/HEAD/4_Grep__Grep_detective/main.go -------------------------------------------------------------------------------- /4_Grep__Grep_detective/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltheperson/10-things-linux/HEAD/4_Grep__Grep_detective/readme.md -------------------------------------------------------------------------------- /4_Grep__Grep_detective/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltheperson/10-things-linux/HEAD/4_Grep__Grep_detective/screenshot.png -------------------------------------------------------------------------------- /5_Awk_and_sed__Passwdinfo/passwdinfo.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltheperson/10-things-linux/HEAD/5_Awk_and_sed__Passwdinfo/passwdinfo.bash -------------------------------------------------------------------------------- /5_Awk_and_sed__Passwdinfo/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltheperson/10-things-linux/HEAD/5_Awk_and_sed__Passwdinfo/readme.md -------------------------------------------------------------------------------- /5_Awk_and_sed__Passwdinfo/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltheperson/10-things-linux/HEAD/5_Awk_and_sed__Passwdinfo/screenshot.png -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/first_clue: -------------------------------------------------------------------------------- 1 | Find a file that ends with ".clue" -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/noise/bonkers_berry/bonkers_freak.file: -------------------------------------------------------------------------------- 1 | sick_promises_frisky_people -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/noise/bonkers_berry/filthy_deer.text: -------------------------------------------------------------------------------- 1 | angry_world_unholy_band -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/noise/bonkers_berry/idiotic_band/angry_promises.file: -------------------------------------------------------------------------------- 1 | 858242899988968533 -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/noise/bonkers_berry/idiotic_band/angry_toaster/abusive_pistol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltheperson/10-things-linux/HEAD/6_Find__Find_treasure_hunt/noise/bonkers_berry/idiotic_band/angry_toaster/abusive_pistol -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/noise/bonkers_berry/idiotic_band/angry_toaster/frozen_car.doc: -------------------------------------------------------------------------------- 1 | 687358578941356251 -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/noise/bonkers_berry/idiotic_band/filthy_mistake.zip: -------------------------------------------------------------------------------- 1 | angry_band_harsh_color -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/noise/bonkers_berry/idiotic_band/harsh_cat/fluffy_master.db: -------------------------------------------------------------------------------- 1 | crawly_car_harsh_mistake -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/noise/bonkers_berry/idiotic_band/harsh_cat/unholy_bug.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltheperson/10-things-linux/HEAD/6_Find__Find_treasure_hunt/noise/bonkers_berry/idiotic_band/harsh_cat/unholy_bug.text -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/noise/bonkers_berry/idiotic_band/harsh_cat/unholy_tank.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltheperson/10-things-linux/HEAD/6_Find__Find_treasure_hunt/noise/bonkers_berry/idiotic_band/harsh_cat/unholy_tank.txt -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/noise/bonkers_berry/idiotic_band/harsh_cat/zippy_color: -------------------------------------------------------------------------------- 1 | shaky_car_harsh_people -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/noise/bonkers_berry/idiotic_band/useless_mediation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltheperson/10-things-linux/HEAD/6_Find__Find_treasure_hunt/noise/bonkers_berry/idiotic_band/useless_mediation.txt -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/noise/bonkers_berry/zippy_mediation: -------------------------------------------------------------------------------- 1 | idiotic_car_harsh_tank -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/noise/frisky_guilt: -------------------------------------------------------------------------------- 1 | 73584386618826020 -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/noise/hideous_sleazeball/abusive_legend/abusive_people.db: -------------------------------------------------------------------------------- 1 | harsh_tailpipe_frozen_kitty -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/noise/hideous_sleazeball/abusive_legend/crawly_berry.doc: -------------------------------------------------------------------------------- 1 | 229536199341782476 -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/noise/hideous_sleazeball/abusive_legend/crawly_toaster/.useless_bug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltheperson/10-things-linux/HEAD/6_Find__Find_treasure_hunt/noise/hideous_sleazeball/abusive_legend/crawly_toaster/.useless_bug.txt -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/noise/hideous_sleazeball/abusive_legend/crawly_toaster/crawly_tailpipe.link: -------------------------------------------------------------------------------- 1 | 792711313481122443 -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/noise/hideous_sleazeball/abusive_legend/crawly_toaster/filthy_pistol: -------------------------------------------------------------------------------- 1 | augue mauris laoreet metus -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/noise/hideous_sleazeball/abusive_legend/crawly_toaster/frozen_mistake.file: -------------------------------------------------------------------------------- 1 | 806123584218226572 -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/noise/hideous_sleazeball/abusive_legend/sticky_toaster/fluffy_people.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltheperson/10-things-linux/HEAD/6_Find__Find_treasure_hunt/noise/hideous_sleazeball/abusive_legend/sticky_toaster/fluffy_people.zip -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/noise/hideous_sleazeball/abusive_legend/sticky_toaster/insane_tailpipe.doc: -------------------------------------------------------------------------------- 1 | 282750049856293793 -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/noise/hideous_sleazeball/abusive_legend/sticky_toaster/sticky_kitty: -------------------------------------------------------------------------------- 1 | 635925135949220471 -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/noise/hideous_sleazeball/abusive_legend/zippy_deer: -------------------------------------------------------------------------------- 1 | shaky_freak_angry_car -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/noise/hideous_sleazeball/bonkers_failure.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltheperson/10-things-linux/HEAD/6_Find__Find_treasure_hunt/noise/hideous_sleazeball/bonkers_failure.zip -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/noise/hideous_sleazeball/frisky_idiot/frozen_guilt/angry_legend.clue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltheperson/10-things-linux/HEAD/6_Find__Find_treasure_hunt/noise/hideous_sleazeball/frisky_idiot/frozen_guilt/angry_legend.clue -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/noise/hideous_sleazeball/frisky_idiot/frozen_guilt/honest_band.txt: -------------------------------------------------------------------------------- 1 | metus nunc massa Etiam -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/noise/hideous_sleazeball/frisky_idiot/frozen_guilt/idiotic_cat.doc: -------------------------------------------------------------------------------- 1 | placerat nunc bibendum aliquam non -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/noise/hideous_sleazeball/frisky_idiot/frozen_guilt/shaky_bug.txt: -------------------------------------------------------------------------------- 1 | 101420458847791535 -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/noise/hideous_sleazeball/frisky_idiot/twisted_dragon/abusive_pistol.file: -------------------------------------------------------------------------------- 1 | 818123259844658237 -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/noise/hideous_sleazeball/frisky_idiot/twisted_dragon/abusive_tank.file: -------------------------------------------------------------------------------- 1 | metus bibendum nunc sem -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/noise/hideous_sleazeball/frisky_idiot/twisted_legend.txt: -------------------------------------------------------------------------------- 1 | in non vel -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/noise/hideous_sleazeball/frisky_idiot/ungodly_messiness/drunken_mediation.db: -------------------------------------------------------------------------------- 1 | dictum blandit nunc Etiam -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/noise/hideous_sleazeball/frisky_idiot/ungodly_messiness/sticky_dragon: -------------------------------------------------------------------------------- 1 | 471021179820109905 -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/noise/hideous_sleazeball/frisky_idiot/ungodly_messiness/ungodly_car.text: -------------------------------------------------------------------------------- 1 | zippy_tailpipe_harsh_mood -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/noise/hideous_sleazeball/frisky_idiot/ungodly_messiness/unholy_cat.zip: -------------------------------------------------------------------------------- 1 | sick_mood_fluffy_band -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/noise/hideous_sleazeball/useless_messiness/crawly_messiness/fluffy_tank: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltheperson/10-things-linux/HEAD/6_Find__Find_treasure_hunt/noise/hideous_sleazeball/useless_messiness/crawly_messiness/fluffy_tank -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/noise/hideous_sleazeball/useless_messiness/crawly_messiness/greedy_sleazeball.file: -------------------------------------------------------------------------------- 1 | 183139903458691559 -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/noise/hideous_sleazeball/useless_messiness/crawly_messiness/harsh_failure.doc: -------------------------------------------------------------------------------- 1 | shaky_messiness_deep_pistol -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/noise/hideous_sleazeball/useless_messiness/harsh_mediation/fluffy_tailpipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltheperson/10-things-linux/HEAD/6_Find__Find_treasure_hunt/noise/hideous_sleazeball/useless_messiness/harsh_mediation/fluffy_tailpipe.go -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/noise/hideous_sleazeball/useless_messiness/harsh_mediation/idiotic_master: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/noise/hideous_sleazeball/useless_messiness/hideous_legend/idiotic_mediation.txt: -------------------------------------------------------------------------------- 1 | 276698073497337033 -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/noise/hideous_sleazeball/useless_messiness/hideous_legend/sticky_toaster.list: -------------------------------------------------------------------------------- 1 | frozen_messiness_zippy_toilet -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/noise/hideous_sleazeball/useless_messiness/hideous_legend/zippy_mood.zip: -------------------------------------------------------------------------------- 1 | 62705307956094283 -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/noise/hideous_sleazeball/useless_messiness/sick_freak.db: -------------------------------------------------------------------------------- 1 | 202132038144009339 -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/noise/twisted_cat: -------------------------------------------------------------------------------- 1 | 381496004627850971 -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/noise/unholy_deer.secret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltheperson/10-things-linux/HEAD/6_Find__Find_treasure_hunt/noise/unholy_deer.secret -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/noise_creater.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltheperson/10-things-linux/HEAD/6_Find__Find_treasure_hunt/noise_creater.go -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltheperson/10-things-linux/HEAD/6_Find__Find_treasure_hunt/readme.md -------------------------------------------------------------------------------- /6_Find__Find_treasure_hunt/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltheperson/10-things-linux/HEAD/6_Find__Find_treasure_hunt/screenshot.png -------------------------------------------------------------------------------- /7_File_system__Root_tour/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltheperson/10-things-linux/HEAD/7_File_system__Root_tour/main.go -------------------------------------------------------------------------------- /7_File_system__Root_tour/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltheperson/10-things-linux/HEAD/7_File_system__Root_tour/readme.md -------------------------------------------------------------------------------- /7_File_system__Root_tour/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltheperson/10-things-linux/HEAD/7_File_system__Root_tour/screenshot.png -------------------------------------------------------------------------------- /8_Processes__Stranger_danger/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltheperson/10-things-linux/HEAD/8_Processes__Stranger_danger/readme.md -------------------------------------------------------------------------------- /8_Processes__Stranger_danger/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltheperson/10-things-linux/HEAD/8_Processes__Stranger_danger/screenshot.png -------------------------------------------------------------------------------- /8_Processes__Stranger_danger/stranger_danger.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltheperson/10-things-linux/HEAD/8_Processes__Stranger_danger/stranger_danger.bash -------------------------------------------------------------------------------- /9_Systemd_services__Createservice/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltheperson/10-things-linux/HEAD/9_Systemd_services__Createservice/main.go -------------------------------------------------------------------------------- /9_Systemd_services__Createservice/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltheperson/10-things-linux/HEAD/9_Systemd_services__Createservice/readme.md -------------------------------------------------------------------------------- /9_Systemd_services__Createservice/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltheperson/10-things-linux/HEAD/9_Systemd_services__Createservice/screenshot.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltheperson/10-things-linux/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltheperson/10-things-linux/HEAD/README.md --------------------------------------------------------------------------------