This website requires JavaScript.
Explore
Help
Sign In
raul
/
bash-exercises
Watch
1
Star
0
Fork
You've already forked bash-exercises
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
main
bash-exercises
/
replace_spaces
3 lines
74 B
Bash
Executable File
Raw
Permalink
Blame
History
#!/bin/bash
for
file in *
;
do
mv
"
$file
"
`
echo
$file
|
tr
' '
'_'
`
;
done
Reference in New Issue
View Git Blame
Copy Permalink