Posts

氷の世界 (曲)

Image
「 氷の世界 」 井上陽水の楽曲 収録アルバム 『 氷の世界 』 リリース 1973年12月1日 規格 LP 録音 1973年 ジャンル フォーク レーベル ポリドール 作詞者 井上陽水 作曲者 井上陽水 プロデュース 多賀英典 カバー 筋肉少女帯(1992年)、川村知砂(1996年)、他 『 氷の世界 』 収録順 チエちゃん (4) 「 氷の世界 」 (5) 白い一日 (6) 「 氷の世界 」(こおりのせかい)は、井上陽水が作詞・作曲した曲である。1973年に発売された陽水のアルバム『氷の世界』の表題曲として、その5曲目に収録されている。編曲は星勝とニック・ハリソンによる。 陽水の代表曲の一つで、コンサートでは必ず歌われている。また、数多くの歌手によってカバーされている。 目次 1 主なカバー 2 筋肉少女帯のシングル 2.1 筋肉少女帯のシングルの収録曲 3 脚注 主なカバー ちあきなおみ - アルバム『ルージュ』収録(1977年) 筋肉少女帯 - 同名シングル(1992年) ⇒ 後述 川村知砂 - 同名シングル(1996年) 工藤静香 - アルバム『昭和の階段 Vol.1』収録(2002年) 上賀茂潤(小見川千明) - アルバム『夏のあらし! キャラクターソングアルバム「歌声喫茶方舟」』収録(2009年) 高野千恵 - アルバム『Winter Collection』収録(2009年) 筋肉少女帯のシングル 「 氷の世界 」 筋肉少女帯 の シングル 初出アルバム『筋少の大水銀』 B面 戦え!何を!?人生を! リリース 1992年2月21日 規格 8cmCD ジャンル ロック ハードロック ヘヴィメタル 時間 4分0秒 レーベル トイズファクトリー 作詞・作曲 井上陽水 チャート最高順位 週間28位(オリコン) 筋肉少女帯 シングル 年表 踊るダメ人間 (1991年) 氷の世界 (1...

「バーナード・レヴァイン」を作成中

This page is only for reference, If you need detailed information, please check here

Bash - pair each line of file

Image
10 0 This question is strongly related to this and this question. I have a file that contains several lines where each line is a path to a file. Now I want to pair each line with each different line (not itself). Also a pair A B is equal to a B A pair for my purposes, so only one of these combinations should be produced. Example files.dat reads like this in a shorthand notation, each letter is a file path (absolute or relative) a b c d e Then my result should look something like this: a b a c a d a e b c b d b e c d c e d e Preferrably I would like to solve this in bash. Unlike the other questions, my file list is rather small (about 200 lines), so using loops and RAM capacity pose no problems. shell-script text-processing ...