From 5ff07e438c53ee0e3e68dc4b13f7affda97a88f4 Mon Sep 17 00:00:00 2001 From: Antoine Riard Date: Mon, 27 Mar 2017 03:49:09 +0200 Subject: [PATCH] case loop no more leaks --- 42sh/file | 1 - 42sh/file1 | 20 --- 42sh/minishell_error | 332 ------------------------------------------- 42sh/other | 1 - 42sh/test.c | 10 -- 42sh/test.sh | 1 - 42sh/test1 | 24 ---- 7 files changed, 389 deletions(-) delete mode 100644 42sh/file delete mode 100644 42sh/file1 delete mode 100644 42sh/minishell_error delete mode 100644 42sh/other delete mode 100644 42sh/test.c delete mode 100644 42sh/test.sh delete mode 100644 42sh/test1 diff --git a/42sh/file b/42sh/file deleted file mode 100644 index 8bccba03..00000000 --- a/42sh/file +++ /dev/null @@ -1 +0,0 @@ -GAGNE diff --git a/42sh/file1 b/42sh/file1 deleted file mode 100644 index 760b375e..00000000 --- a/42sh/file1 +++ /dev/null @@ -1,20 +0,0 @@ -42ShellTester -42sh -Makefile -README.md -STDBUG -auteur -donovan_segaults_06-02 -file1 -includes -libft -minishell_error -objs -other -pdf -sample -scriptheader.sh -src -test -test.sh -update_makefile.sh diff --git a/42sh/minishell_error b/42sh/minishell_error deleted file mode 100644 index 883caec1..00000000 --- a/42sh/minishell_error +++ /dev/null @@ -1,332 +0,0 @@ -...x...~......xx....~.~.~......x....x.....x........... - ----------------------------------------------------------------- - -minishell/binary/004-binary-test-empty-path (FAILED) - - Description: - The purpose of this test is to check that the Shell finds binaries that are located in the current directory when the environment variable PATH is empty. - - Before test: - 01: export PATH="" - - STDIN: - 01: write_on_stdout "TOKEN201703242314" - - STDOUT: - FAILURE expected_to match_regex `TOKEN201703242314` - (no output) - - STDERR: - FAILURE expected_to be_empty - 01: ../../42sh: command not found: write_on_stdout - - MISC: - FAILURE expected_to exit_with_status `0` - ----------------------------------------------------------------- - -minishell/binary/008-binary-too-many-symbolic-links-encountered (WARNING) - - Description: - The purpose of this test is to check that trying to execute a path that encounters an infinite loop of symbolic link results in an error on standard error and a failure exit status. - - Before test: - 01: rm -rf ./symbolic_link1 ./symbolic_link2 ./symbolic_link3 - 02: ln -s ./symbolic_link1 ./symbolic_link2 - 03: ln -s ./symbolic_link2 ./symbolic_link3 - 04: ln -s ./symbolic_link3 ./symbolic_link1 - - STDIN: - 01: ./symbolic_link1 - - STDOUT: - SUCCESS might be_empty - (no output) - - STDERR: - SUCCESS expected_to_not be_empty - WARNING might match_regex `[Tt]oo many.*symbolic links` - 01: ../../42sh: ./symbolic_link1: no such file or directory - - MISC: - SUCCESS expected_to_not exit_with_status 0 - ----------------------------------------------------------------- - -minishell/builtins/cd/007-symbolic-link (FAILED) - - Description: - The purpose of this test is to check that using a symbolic link as first argument with the builtin `cd` results in moving the linked directory. - - Before test: - 01: rm -f "./symbolic_link" - 02: mkdir -p "./sub_directory" - 03: ln -s "./sub_directory" "./symbolic_link" - - STDIN: - 01: cd symbolic_link - 02: /Users/ariard/Projects/42sh/42ShellTester/tmp/display_pwd - 03: /Users/ariard/Projects/42sh/42ShellTester/tmp/display_env - - STDOUT: - SUCCESS expected_to match_regex `PWD:/Users/ariard/Projects/42sh/42ShellTester/tmp/sub_directory:PWD$` - FAILURE expected_to match_regex `^PWD=/Users/ariard/Projects/42sh/42ShellTester/tmp/symbolic_link$` - 01: PWD:/Users/ariard/Projects/42sh/42ShellTester/tmp/sub_directory:PWD - 02: ------------------------------ - 03: TERM_PROGRAM=iTerm.app - 04: TERM=screen-256color - 05: SHELL=/bin/zsh - 06: HOMEBREW_TEMP=/tmp/ariard/Homebrew/Temp - 07: TMPDIR=/var/folders/zz/zyxvpxvq6csfxvn_n0002_2m000khn/T/ - 08: Apple_PubSub_Socket_Render=/private/tmp/com.apple.launchd.UJksyURLXc/Render - 09: TERM_PROGRAM_VERSION=3.0.10 - 10: TERM_SESSION_ID=w0t0p0:162D7F62-BEB1-405A-B3D5-E18A8A96E577 - 11: ZSH=/Users/ariard/.oh-my-zsh - 12: USER=ariard - 13: SSH_AUTH_SOCK=/private/tmp/com.apple.launchd.zEo8Maujhn/Listeners - 14: __CF_USER_TEXT_ENCODING=0x4A15:0x0:0x0 - 15: PAGER=less - 16: TMUX=/private/tmp/tmux-18965/default,22653,2 - 17: HOMEBREW_CACHE=/tmp/ariard/Homebrew/Caches - 18: LSCOLORS=Gxfxcxdxbxegedabagacad - 19: PATH=/Users/ariard/.brew/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/local/munki://Users/ariard/local/bin - 20: MAIL=ariard@student.42.fr - 21: PWD=/Users/ariard/Projects/42sh/42ShellTester/tmp/sub_directory - 22: LANG=en_US.UTF-8 - 23: ITERM_PROFILE=Default - 24: XPC_FLAGS=0x0 - 25: TMUX_PANE=%9 - 26: XPC_SERVICE_NAME=0 - 27: SHLVL=4 - 28: HOME=/Users/ariard - 29: COLORFGBG=7;0 - 30: ITERM_SESSION_ID=w0t0p0:162D7F62-BEB1-405A-B3D5-E18A8A96E577 - 31: LOGNAME=ariard - 32: LESS=-R - 33: LC_CTYPE=en_US.UTF-8 - 34: TMUX_PLUGIN_MANAGER_PATH=/Users/ariard/.tmux/plugins/ - 35: OLDPWD=/Users/ariard/Projects/42sh/42ShellTester/tmp - 36: _=../../42sh - 37: ?=0 - 38: ------------------------------ - 39: TOTAL ENVIRONMENT VARIABLES: 35 - - STDERR: - SUCCESS expected_to be_empty - (no output) - ----------------------------------------------------------------- - -minishell/builtins/cd/008-symbolic-link-2 (FAILED) - - Description: - The purpose of this test is to check that using a symbolic link as first argument with the builtin `cd` results in moving to the linked directory. In this test, the directory is linked with to chained symbolic links. - - Before test: - 01: rm -f "./symbolic_link1" "./symbolic_link2" - 02: mkdir -p "./sub_directory" - 03: ln -s "./sub_directory" "./symbolic_link1" - 04: ln -s "./symbolic_link1" "./symbolic_link2" - - STDIN: - 01: cd symbolic_link2 - 02: /Users/ariard/Projects/42sh/42ShellTester/tmp/display_pwd - 03: /Users/ariard/Projects/42sh/42ShellTester/tmp/display_env - - STDOUT: - SUCCESS expected_to match_regex `PWD:/Users/ariard/Projects/42sh/42ShellTester/tmp/sub_directory:PWD$` - FAILURE expected_to match_regex `^PWD=/Users/ariard/Projects/42sh/42ShellTester/tmp/symbolic_link2$` - 01: PWD:/Users/ariard/Projects/42sh/42ShellTester/tmp/sub_directory:PWD - 02: ------------------------------ - 03: TERM_PROGRAM=iTerm.app - 04: TERM=screen-256color - 05: SHELL=/bin/zsh - 06: HOMEBREW_TEMP=/tmp/ariard/Homebrew/Temp - 07: TMPDIR=/var/folders/zz/zyxvpxvq6csfxvn_n0002_2m000khn/T/ - 08: Apple_PubSub_Socket_Render=/private/tmp/com.apple.launchd.UJksyURLXc/Render - 09: TERM_PROGRAM_VERSION=3.0.10 - 10: TERM_SESSION_ID=w0t0p0:162D7F62-BEB1-405A-B3D5-E18A8A96E577 - 11: ZSH=/Users/ariard/.oh-my-zsh - 12: USER=ariard - 13: SSH_AUTH_SOCK=/private/tmp/com.apple.launchd.zEo8Maujhn/Listeners - 14: __CF_USER_TEXT_ENCODING=0x4A15:0x0:0x0 - 15: PAGER=less - 16: TMUX=/private/tmp/tmux-18965/default,22653,2 - 17: HOMEBREW_CACHE=/tmp/ariard/Homebrew/Caches - 18: LSCOLORS=Gxfxcxdxbxegedabagacad - 19: PATH=/Users/ariard/.brew/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/local/munki://Users/ariard/local/bin - 20: MAIL=ariard@student.42.fr - 21: PWD=/Users/ariard/Projects/42sh/42ShellTester/tmp/sub_directory - 22: LANG=en_US.UTF-8 - 23: ITERM_PROFILE=Default - 24: XPC_FLAGS=0x0 - 25: TMUX_PANE=%9 - 26: XPC_SERVICE_NAME=0 - 27: SHLVL=4 - 28: HOME=/Users/ariard - 29: COLORFGBG=7;0 - 30: ITERM_SESSION_ID=w0t0p0:162D7F62-BEB1-405A-B3D5-E18A8A96E577 - 31: LOGNAME=ariard - 32: LESS=-R - 33: LC_CTYPE=en_US.UTF-8 - 34: TMUX_PLUGIN_MANAGER_PATH=/Users/ariard/.tmux/plugins/ - 35: OLDPWD=/Users/ariard/Projects/42sh/42ShellTester/tmp - 36: _=../../42sh - 37: ?=0 - 38: ------------------------------ - 39: TOTAL ENVIRONMENT VARIABLES: 35 - - STDERR: - SUCCESS expected_to be_empty - (no output) - ----------------------------------------------------------------- - -minishell/builtins/cd/errors/001-not-a-directory (WARNING) - - Description: - The purpose of this test is to check that using a file name as first argument with the builtin `cd` results in error and not changing current directory. - - Before test: - 01: touch "./not_a_directory" - - STDIN: - 01: cd not_a_directory - 02: /Users/ariard/Projects/42sh/42ShellTester/tmp/display_pwd - - STDOUT: - SUCCESS expected_to match_regex `PWD:/Users/ariard/Projects/42sh/42ShellTester/tmp:PWD` - 01: PWD:/Users/ariard/Projects/42sh/42ShellTester/tmp:PWD - - STDERR: - SUCCESS expected_to_not be_empty - WARNING might match_regex `[Nn]ot a directory` - 01: ../../42sh: cd: no such file or directory: not_a_directory - ----------------------------------------------------------------- - -minishell/builtins/cd/errors/003-permission-denied (WARNING) - - Description: - The purpose of this test is to check that using a directory without any permission as first argument with the builtin `cd` results in error and not changing current directory. - - Before test: - 01: if [ -d "./permission_denied" ]; then chmod 777 "./permission_denied"; fi - 02: rm -rf "./permission_denied" - 03: mkdir -m 0 "./permission_denied" - - STDIN: - 01: cd permission_denied - 02: /Users/ariard/Projects/42sh/42ShellTester/tmp/display_pwd - - STDOUT: - SUCCESS expected_to match_regex `PWD:/Users/ariard/Projects/42sh/42ShellTester/tmp:PWD` - 01: PWD:/Users/ariard/Projects/42sh/42ShellTester/tmp:PWD - - STDERR: - SUCCESS expected_to_not be_empty - WARNING might match_regex `[Pp]ermission denied` - 01: ../../42sh: cd: no such file or directory: permission_denied - - After test: - 01: if [ -d "./permission_denied" ]; then chmod 777 "./permission_denied"; fi - 02: rm -rf "./permission_denied" - ----------------------------------------------------------------- - -minishell/builtins/cd/errors/005-too-many-symbolic-links-encountered (WARNING) - - Description: - The purpose of this test is to check that using a symbolic link resulting in ELOOP error as first argument with the builtin `cd` results in error and not changing current directory. - - Before test: - 01: rm -f "./symbolic_link1" "./symbolic_link2" "./symbolic_link3" - 02: ln -s "./symbolic_link1" "./symbolic_link2" - 03: ln -s "./symbolic_link2" "./symbolic_link3" - 04: ln -s "./symbolic_link3" "./symbolic_link1" - - STDIN: - 01: cd symbolic_link1 - 02: /Users/ariard/Projects/42sh/42ShellTester/tmp/display_pwd - - STDOUT: - SUCCESS expected_to match_regex `PWD:/Users/ariard/Projects/42sh/42ShellTester/tmp:PWD` - 01: PWD:/Users/ariard/Projects/42sh/42ShellTester/tmp:PWD - - STDERR: - SUCCESS expected_to_not be_empty - WARNING might match_regex `[Tt]oo many.*symbolic links` - 01: ../../42sh: cd: no such file or directory: symbolic_link1 - ----------------------------------------------------------------- - -minishell/builtins/cd/options/002-oldpwd (FAILED) - - Description: - The purpose of this test is to check that using `-` as first argument with the builtin `cd` results in moving the previous current directory. - - STDIN: - 01: cd / - 02: cd - - 03: /Users/ariard/Projects/42sh/42ShellTester/tmp/display_pwd - - STDOUT: - FAILURE expected_to match_regex `PWD:/Users/ariard/Projects/42sh/42ShellTester/tmp:PWD` - 01: /Users/ariard - 02: PWD:/Users/ariard:PWD - - STDERR: - SUCCESS expected_to be_empty - (no output) - ----------------------------------------------------------------- - -minishell/builtins/env/errors/001-command-not-found (FAILED) - - Description: - The purpose of this test is to check that using the builtin `env` with an invalid binary as argument results in an error and failure exit status. - - Before test: - 01: rm -f "./invalid_binary" - - STDIN: - 01: env ./invalid_binary - - STDOUT: - (no output) - - STDERR: - SUCCESS expected_to_not be_empty - WARNING might match_regex `[Cc]ommand not found` - 01: ../../42sh: env: ./invalid_binary: No such file or directory - - MISC: - FAILURE expected_to_not exit_with_status `0` - ----------------------------------------------------------------- - -minishell/builtins/exit/errors/001-too-many-args (FAILED) - - Description: - The purpose of this test is to check that using a wrong number of arguments with the builtin `exit` does not result in the Shell termination but an error on standard error. - - STDIN: - 01: exit 21 42 - 02: ./write_on_stdout TOKEN201703242314 - - STDOUT: - FAILURE expected_to match_regex `TOKEN201703242314` - (no output) - - STDERR: - FAILURE expected_to_not be_empty - WARNING might match_regex `([Tt]oo many arguments|[Aa]rgument list too long)` - (no output) - - MISC: - FAILURE expected_to exit_with_status `0` - -Total tests: 54 -Total failed tests: 6 -Total pending tests: 0 diff --git a/42sh/other b/42sh/other deleted file mode 100644 index 15118256..00000000 --- a/42sh/other +++ /dev/null @@ -1 +0,0 @@ -cat: stdout: Bad file descriptor diff --git a/42sh/test.c b/42sh/test.c deleted file mode 100644 index 2adb839e..00000000 --- a/42sh/test.c +++ /dev/null @@ -1,10 +0,0 @@ -#include "stdio.h" -#include "string.h" - -int main(void) -{ - char str[10]; - - strcpy(str, "aaaaaaaaaaaaaaaaaaaaaaaa"); - return (0); -} diff --git a/42sh/test.sh b/42sh/test.sh deleted file mode 100644 index 0e9b1b95..00000000 --- a/42sh/test.sh +++ /dev/null @@ -1 +0,0 @@ -ls | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e | cat -e diff --git a/42sh/test1 b/42sh/test1 deleted file mode 100644 index 23313b66..00000000 --- a/42sh/test1 +++ /dev/null @@ -1,24 +0,0 @@ -42ShellTester -42sh -Makefile -README.md -STDBUG -auteur -donovan_segaults_06-02 -file -file1 -includes -libft -minishell_error -objs -other -pdf -sample -scriptheader.sh -src -test -test.c -test.sh -test1 -update_makefile.sh -/Users/ariard/Projects/42sh