You are viewing a single comment's thread. Return to all comments →
#!/bin/bash rm file.txt > stdout.txt 2> stderr.txt while IFS= read -r line || [ -n "$line" ]; do echo "$line" >> file.txt done sort < file.txt
Seems like cookies are disabled on this browser, please enable them to open this website
Sort Command #1
You are viewing a single comment's thread. Return to all comments →