SR20-XV500 / minishell

2 stars 0 forks source link

minishell export sort does not match bash one #122

Open bcheronn opened 5 months ago

bcheronn commented 5 months ago
export test=
export test0=
> export
declare -x test0=""
declare -x test=""

should be

> export
declare -x test=""
declare -x test0=""