LoginSignup
5
0

More than 5 years have passed since last update.

ずんだの縦読み問題 ShellScript編

Posted at

元ネタ

ずんだの縦読み問題 php編 - Qiita
ずんだの縦読み問題 Go編
ずんだの縦読み問題 Perl編
ずんだの縦読み問題 Ruby編
ずんだの縦読み問題 Java 12 Early-Access 版

実装

#!/bin/sh

tweet1="忙しくてついったいじれない"
tweet2="さみしい"
tweet3="つらい"

echo ${tweet1:0:1}${tweet2:0:1}${tweet3:0:1}
 ~/tmp ./zunda.sh
忙さつ
5
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
0