fix _make_git_tar_dir.sh - don't 'append directory' to symlinks
[cmdllinux.git] / scripts / _print_char_column.sh
blobf8e310281d88ba835c59954e98861260a10eca3b
2 FILE=$1
3 COLL=$2
4 COLL=$(expr $COLL - 1)
5 IFS=$'\n'
6 cat $FILE | \
7 while read -r line; do
8 echo "${line:$COLL}"
9 done