Skip to content

Commit

Permalink
FIX Added shebang lines to shell scripts.
Browse files Browse the repository at this point in the history
  • Loading branch information
andre-martins committed Nov 5, 2014
1 parent b589096 commit 946300d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions scripts/create_conll_predicted_tags_corpus.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/bin/bash

this_folder="`cd $(dirname $0);pwd`"

file_conll=$1
Expand Down
2 changes: 2 additions & 0 deletions scripts/create_tagging_corpus.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
#!/bin/bash

file_conll=$1
awk '{ if (NF>0) print $2 "\t" $5; else print ""}' ${file_conll} > ${file_conll}.tagging
2 changes: 2 additions & 0 deletions scripts/parse.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/bin/bash

DIR=$(cd $(dirname "$0"); pwd)
tmp_folder=${DIR}/tmp

Expand Down

0 comments on commit 946300d

Please sign in to comment.