Files
42_INT_07_minishell/tests/unit_tests/ut_heredocs.sh
2021-12-05 11:08:49 +01:00

15 lines
179 B
Bash

#!/bin/bash
COMMANDE=' echo "hugo"
cat << EOF
hello you
EOF'
echo "$COMMANDE" | bash -i &>file.log
#echo "$COMMANDE" | ./minishell &>file.log
#cat << EOF
#hello
#EOF