"wordswithoutspaces" ?
yes, *hashcat reads line by line, regardless if there are spaces in some lines of your wordlist.
If you meant "wordswithspaces", yes they are tested as 1 plain and not split
If you instead want to split by space you can use a simple sed command etc:
sed 's! !\n!g' wordswithspaces_orig.txt > wordswithspaces_dict.txt
sort -u wordswithspaces_dict.txt > wordswithspaces_dict_sorted.txt
yes, *hashcat reads line by line, regardless if there are spaces in some lines of your wordlist.
If you meant "wordswithspaces", yes they are tested as 1 plain and not split
If you instead want to split by space you can use a simple sed command etc:
sed 's! !\n!g' wordswithspaces_orig.txt > wordswithspaces_dict.txt
sort -u wordswithspaces_dict.txt > wordswithspaces_dict_sorted.txt