Akagi201
5/15/2016 - 10:46 AM

read_file.sh

#!/bin/bash
while IFS='' read -r line || [[ -n "$line" ]]; do
    touch "$line"
done < "$1"