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 |
Linuxコマンド > basename フルパスからファイル名抽出
|
|
フルパスからファイル名抽出
~$ basename /home/hoge/abc.txtabc.txt
拡張子を取り除く
~$ basename /home/hoge/abc.txt .txtabc
フルパスからファイル名抽出(複数指定)
~$ basename -a /home/hoge/abc.txt /home/fuga/def.txtabc.txt
def.txt