Changes
Page history
add note about adding all .sh files to have executable bit
authored
Nov 08, 2018
by
Chris
Hide whitespace changes
Inline
Side-by-side
fish-shell-Notes.md
View page @
3ffb219d
...
...
@@ -553,6 +553,12 @@ fi
To test a file / directory is writeable use
`[ -w`
within a shell script.
To change all files in a directory with an
**sh**
extension to have an executable user bit.
```
shell
find /path/to/dif
-name
"*.sh"
-execdir
chmod
u+x
{}
+
```
<a
href=
"advanced-bash-usage"
></a>
### Advanced BASH Usage 🙄
...
...
...
...