#!/bin/bash


ls -1 $1 | while read file_name ; do echo $file_name | cut -d '.' -f 1 | xargs -I {} touch $1{}_none.txt $1{}_asc.txt $1{}_desc.txt ; done