summaryrefslogtreecommitdiff
path: root/skip-if-file-exists
blob: 0cb450ecef994aaa1d4ac6cb33cbebd6069abe1e (plain)
1
2
3
4
5
6
7
8
#!/bin/bash -norc
while IFS=$'\t' read fl
do
  if [ ! -f "$fl" ]
  then
    echo "$fl"
  fi
done