Questions tagged «input»

2
总共有多少种方式可以输入输入命令?
关于Linux,我注意到的第一件事是将数据输入命令的方式不同,我知道几种,但不知道总共有多少种。 到目前为止我所知道的方式: 管道: echo -e "zorro\nwurst\nlahmacun\nsozialhilfe" | sort 从键盘发出文件结尾信号: sort >gurken >zucker >braunkohle 从文件: sort foo HERE字符串(实际上称为HERE文档): sort << HERE >wasserkopf >elternzeit >schuldeingeständnis >währungsreform >alabasterhaut HERE 这是全部还是还有更多的方法可以使用?为什么根本没有其他方法?有些方法是否多余?

2
通过网络将键盘共享为单独的设备?
我正在尝试实现类似于以下的功能:https : //superuser.com/questions/67659/linux-share-keyboard-over-network 不同之处在于,我需要远程键盘与本地键盘分开使用。链接中描述的方法似乎将事件传送到现有设备文件中。我需要在运行时将远程键盘显示为物理(从属)设备xinput list 我为什么需要这个?我正在尝试玩两人游戏,但没有外部USB键盘,因此我想将远程计算机上的按键输入到假设备(这样我就可以为每位玩家分配一个设备)。

1
Bash脚本不读取输入
我有一个脚本,该脚本应该在后台运行命令,并且可以执行该命令。问题在于,当脚本执行读取命令时,它不会暂停并接受输入。这里是: printf "Where is yo music?: " read musicPath cd $musicPath ls | while read currentSong;do seconds=`mdls "$currentSong"|sed -n '20p'|awk '{print $3}'|cut -d. -f1` hours=$((seconds / 3600)) seconds=$((seconds % 3600)) minutes=$((seconds / 60)) seconds=$((seconds % 60)) echo "Song: $currentSong" echo "Length: $hours:$minutes:$seconds" afplay "$currentSong"& printf "yes (y), no (n), or …

1
将用户输入读入数组,直到用户输入特定条目
我需要创建一个bash,从用户那里获取输入并将它们插入到数组中,直到用户输入特定内容为止。例如,如果我运行脚本: enter variables: 3 4 7 8 ok 我得到这个数组: array=( 2 4 7 8 ) 要么: enter variables: 15 9 0 24 36 8 1 ok 我得到这个数组: array=( 15 9 0 24 36 8 1 ) 我怎样才能做到这一点?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.