Simple Sand Samples |
説明のないとってもシンプルなサンプルプログラム集
COBOL | awk | C言語 | D言語 | GO言語 | Lua | Vim |
bash | Perl | Gauche | Clojure | CLISP | EmacsLisp | VimScript |
tcsh | Ruby | Groovy | Java | C# | VBScript | JavaScript |
Io言語 | Python | Erlang | Scala | VB.NET | Excel/VBA | PHP |
Tcl | Haskell | OCaml | PowerShell | Windows | Unix/Linux |
Bash > フルパスからファイル名のみを取得
basename.bash
|
|
$ source basename.bash /home/hoge/abc.txt
abc.txt
abc.txt
abc.txt
$ source basename.bash /home/hoge/abc
abc
abc
abc
$ source basename.bash /home/hoge/
hoge
THIS IS A DIRECTORY.
$ source basename.bash /home/hoge
hoge
hoge
THIS IS A DIRECTORY.
$
abc.txt
abc.txt
abc.txt
$ source basename.bash /home/hoge/abc
abc
abc
abc
$ source basename.bash /home/hoge/
hoge
THIS IS A DIRECTORY.
$ source basename.bash /home/hoge
hoge
hoge
THIS IS A DIRECTORY.
$
* 確認環境 Debian Linux(Jessie)