Tagged Questions
0
votes
3answers
439 views
Copyright and pound sterling symbol in Bash script
What is the proper way of inserting a copyright symbol © and a pound sterling symbol £ into a bash script.
I am using nano as my editor and am running Debian Squeeze.
If I copy and paste the symbol ...
1
vote
3answers
553 views
How to open an editor from a bash function?
I have a simple function to open an editor:
open_an_editor()
{
nano "$1"
}
If called like open_an_editor file.ext, it works. But if I need to get some output from the function — ...