fix ifs option in the tutorial

This commit is contained in:
Gokcehan 2016-08-25 02:01:50 +03:00
parent ad4986e3d7
commit bc41ed7469

View File

@ -85,7 +85,7 @@ Since these are one liners, we can drop `{{` and `}}`.
cmd trash $IFS=':'; mv --backup=numbered $fx $HOME/.trash cmd trash $IFS=':'; mv --backup=numbered $fx $HOME/.trash
Finally note that we set `IFS` variable accordingly in the command. Finally note that we set `IFS` variable accordingly in the command.
Instead we could use the `ifs` option to set it for all commands (e.g. `set ifs :`). Instead we could use the `ifs` option to set it for all commands (e.g. `set ifs ':'`).
This could be especially useful for interactive use (e.g. `rm $fs` would simply work). This could be especially useful for interactive use (e.g. `rm $fs` would simply work).
This option is not set by default as things may behave unexpectedly at other places. This option is not set by default as things may behave unexpectedly at other places.