How to send output of convert to a writable directory in bash?
up vote
2
down vote
favorite
I want to convert .tbl
files to .csv
in /data/
directory which I've got read-only access.
I'm using this command:
for i in `ls *.tbl`; do
sed 's/|$//' $i > ${i/tbl/csv}
echo $i
done
But I'm getting:
-bash: supplier.csv: Permission denied
And I don't know how to change the script such that it could save the output in a writable directory.
Any idea how to solve it?
command-line bash
New contributor
Marzieh Heidari is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
up vote
2
down vote
favorite
I want to convert .tbl
files to .csv
in /data/
directory which I've got read-only access.
I'm using this command:
for i in `ls *.tbl`; do
sed 's/|$//' $i > ${i/tbl/csv}
echo $i
done
But I'm getting:
-bash: supplier.csv: Permission denied
And I don't know how to change the script such that it could save the output in a writable directory.
Any idea how to solve it?
command-line bash
New contributor
Marzieh Heidari is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
up vote
2
down vote
favorite
up vote
2
down vote
favorite
I want to convert .tbl
files to .csv
in /data/
directory which I've got read-only access.
I'm using this command:
for i in `ls *.tbl`; do
sed 's/|$//' $i > ${i/tbl/csv}
echo $i
done
But I'm getting:
-bash: supplier.csv: Permission denied
And I don't know how to change the script such that it could save the output in a writable directory.
Any idea how to solve it?
command-line bash
New contributor
Marzieh Heidari is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
I want to convert .tbl
files to .csv
in /data/
directory which I've got read-only access.
I'm using this command:
for i in `ls *.tbl`; do
sed 's/|$//' $i > ${i/tbl/csv}
echo $i
done
But I'm getting:
-bash: supplier.csv: Permission denied
And I don't know how to change the script such that it could save the output in a writable directory.
Any idea how to solve it?
command-line bash
command-line bash
New contributor
Marzieh Heidari is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Marzieh Heidari is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
edited 11 hours ago
![](https://i.stack.imgur.com/eVuAv.png?s=32&g=1)
![](https://i.stack.imgur.com/eVuAv.png?s=32&g=1)
wjandrea
7,80642258
7,80642258
New contributor
Marzieh Heidari is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked 12 hours ago
![](https://lh4.googleusercontent.com/-LkfV7gAnRHw/AAAAAAAAAAI/AAAAAAAAABk/PNPiEq2VX8U/photo.jpg?sz=32)
![](https://lh4.googleusercontent.com/-LkfV7gAnRHw/AAAAAAAAAAI/AAAAAAAAABk/PNPiEq2VX8U/photo.jpg?sz=32)
Marzieh Heidari
1135
1135
New contributor
Marzieh Heidari is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Marzieh Heidari is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Marzieh Heidari is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
up vote
4
down vote
accepted
Just specify a different path:
for tbl in *.tbl ; do
sed 's/|$//' "$tbl" > /another/path/"${tbl%.tbl}".csv
echo "$tbl"
done
Few minor fixes:
Don't parse the output of
ls
, just iterate over an expanded wildcard pattern.Double quote variables (filenames can contain whitespace).
I used Remove Matching Suffix instead of Substitution.
add a comment |
up vote
4
down vote
Just specify the path (here /path/to/writable/dir/
) before the filename:
for i in *.tbl; do
sed 's/|$//' "$i" >"/path/to/writable/dir/${i/%tbl/csv}"
echo "$i"
done
You should never parse the output of ls
(Why?) and always quote variables like $i
here. Adding %
at the pattern’s beginning makes it match against the end of the string so that a filename like tbl.tbl
becomes tbl.csv
rather than csv.tbl
. Read more about Parameter expansion here on bash-hackers.org.
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
4
down vote
accepted
Just specify a different path:
for tbl in *.tbl ; do
sed 's/|$//' "$tbl" > /another/path/"${tbl%.tbl}".csv
echo "$tbl"
done
Few minor fixes:
Don't parse the output of
ls
, just iterate over an expanded wildcard pattern.Double quote variables (filenames can contain whitespace).
I used Remove Matching Suffix instead of Substitution.
add a comment |
up vote
4
down vote
accepted
Just specify a different path:
for tbl in *.tbl ; do
sed 's/|$//' "$tbl" > /another/path/"${tbl%.tbl}".csv
echo "$tbl"
done
Few minor fixes:
Don't parse the output of
ls
, just iterate over an expanded wildcard pattern.Double quote variables (filenames can contain whitespace).
I used Remove Matching Suffix instead of Substitution.
add a comment |
up vote
4
down vote
accepted
up vote
4
down vote
accepted
Just specify a different path:
for tbl in *.tbl ; do
sed 's/|$//' "$tbl" > /another/path/"${tbl%.tbl}".csv
echo "$tbl"
done
Few minor fixes:
Don't parse the output of
ls
, just iterate over an expanded wildcard pattern.Double quote variables (filenames can contain whitespace).
I used Remove Matching Suffix instead of Substitution.
Just specify a different path:
for tbl in *.tbl ; do
sed 's/|$//' "$tbl" > /another/path/"${tbl%.tbl}".csv
echo "$tbl"
done
Few minor fixes:
Don't parse the output of
ls
, just iterate over an expanded wildcard pattern.Double quote variables (filenames can contain whitespace).
I used Remove Matching Suffix instead of Substitution.
edited 11 hours ago
answered 12 hours ago
choroba
6,56411730
6,56411730
add a comment |
add a comment |
up vote
4
down vote
Just specify the path (here /path/to/writable/dir/
) before the filename:
for i in *.tbl; do
sed 's/|$//' "$i" >"/path/to/writable/dir/${i/%tbl/csv}"
echo "$i"
done
You should never parse the output of ls
(Why?) and always quote variables like $i
here. Adding %
at the pattern’s beginning makes it match against the end of the string so that a filename like tbl.tbl
becomes tbl.csv
rather than csv.tbl
. Read more about Parameter expansion here on bash-hackers.org.
add a comment |
up vote
4
down vote
Just specify the path (here /path/to/writable/dir/
) before the filename:
for i in *.tbl; do
sed 's/|$//' "$i" >"/path/to/writable/dir/${i/%tbl/csv}"
echo "$i"
done
You should never parse the output of ls
(Why?) and always quote variables like $i
here. Adding %
at the pattern’s beginning makes it match against the end of the string so that a filename like tbl.tbl
becomes tbl.csv
rather than csv.tbl
. Read more about Parameter expansion here on bash-hackers.org.
add a comment |
up vote
4
down vote
up vote
4
down vote
Just specify the path (here /path/to/writable/dir/
) before the filename:
for i in *.tbl; do
sed 's/|$//' "$i" >"/path/to/writable/dir/${i/%tbl/csv}"
echo "$i"
done
You should never parse the output of ls
(Why?) and always quote variables like $i
here. Adding %
at the pattern’s beginning makes it match against the end of the string so that a filename like tbl.tbl
becomes tbl.csv
rather than csv.tbl
. Read more about Parameter expansion here on bash-hackers.org.
Just specify the path (here /path/to/writable/dir/
) before the filename:
for i in *.tbl; do
sed 's/|$//' "$i" >"/path/to/writable/dir/${i/%tbl/csv}"
echo "$i"
done
You should never parse the output of ls
(Why?) and always quote variables like $i
here. Adding %
at the pattern’s beginning makes it match against the end of the string so that a filename like tbl.tbl
becomes tbl.csv
rather than csv.tbl
. Read more about Parameter expansion here on bash-hackers.org.
edited 11 hours ago
answered 12 hours ago
![](https://i.stack.imgur.com/9L8vd.png?s=32&g=1)
![](https://i.stack.imgur.com/9L8vd.png?s=32&g=1)
dessert
21.2k55896
21.2k55896
add a comment |
add a comment |
Marzieh Heidari is a new contributor. Be nice, and check out our Code of Conduct.
Marzieh Heidari is a new contributor. Be nice, and check out our Code of Conduct.
Marzieh Heidari is a new contributor. Be nice, and check out our Code of Conduct.
Marzieh Heidari is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1095420%2fhow-to-send-output-of-convert-to-a-writable-directory-in-bash%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown